-
Notifications
You must be signed in to change notification settings - Fork 3.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add Sass like extend #509
Add Sass like extend #509
Conversation
Nice work, I'll have a look! |
and the output is also grouped. nice. |
I really like to see this one get merged into LESS. It's obviously missing this feature and will help us generate lighter and leaner css files by reusing instead of repeating. a big 👍 |
Yeah, I like this as well. Is this going to be merged or what? |
I also would love to know if/when this is going to be implemented. |
It'd be awesome to get something like this into LESS. Any plans to merge? |
+1 |
Another +1 to this, it'd be a huge help! |
Nice one. +1 |
+1 can we get this merged into LESS please. It'll help loads, really. |
+1 I feel this is the one major piece of functionality LESS is missing. (Also: more +1's from another issue: #759) |
Has there been any movement on this? Why hasn't the developer pulled this in? All the comparisons between SASS and LESS point to this as one of the killer features. Cloudhead your community desparatwly wants this feature!!!! |
Any chance of taking a look @cloudhead ? |
Can someone with prove ledges please add this and release it? This pull request is months old. The LESS community will be very grateful! |
we will get round to considering this, but I think bugs are higher priority. |
I can't disagree with the importance of bug fixes, @agatronic, but I'd also second @dtigraphics that time and time again I hear people recommend Sass over LESS because LESS lacks this feature... It's a useful bit of functionality that would really improve the experience of using the tool, IMO, and we'd love to see this prioritized as soon as new features are under discussion. In the meantime, what can we as a community do to test/support this request? There's a lot of us on this thread by now, if there is anything we can do to speed up the inclusion of this feature we would love to help! |
If you want this REALLY bad you could just fork the repo and make your own build in the mean time ;) |
@leopic and then have to go back and fix all your code when a slightly modified version of this feature gets merged. |
Well you can't have your cake and eat it too, IMHO the whole idea of exposing your source code is that people don't have to wait 8 months before trying out a new feature gets merged, as long as you can make a build you can run your own flavor of your favorite tool =) |
@leopic that's true when you're hacking at personal projects. But maintaining a patch like this in production quickly turns into a huge pita. |
I think it's clear that there's a very large community of developers who use, and would like to help the project to keep it alive. Let's be honest - the ratio of open bugs to closed is staggering. It's starting to appear as though the project has lost momentum. What can this community do in order to keep this easy to use and powerful tool alive? You brought up a good point about the difference between personal and public projects. It's important to maintain momentum to ensure LESS doesn't fade away like so many other great tools! Jason Chandler On Jul 20, 2012, at 10:46 PM, ilia choly reply@reply.github.com wrote:
|
Well let's fork and get on with it. Who's first? |
before you do that please read bug #867 and move this conversation there. we are doing our best! |
so can this happen now? would be SO AWESOME |
@agatronic - Thanks for all the work you and the others are doing to maintain this project. Please let us know if we can do anything to vet out this PR... While it is a new feature/increased scope, I have semi-regularly heard people express the lack of extend as the sole reason they are choosing SCSS over LESS and I'd love to be involved in the conversation about how we might address that issue. |
this one is just waiting for someone to pick it up, evaluate etc. we have had alot of interest and @cloudhead seemed to be interested in it, so I could have a go at merging soon. |
The documentation can list "extending" and "extension" to make the On Oct 31, 2012, at 6:50 PM, "Mária Jurčovičová" notifications@github.com I may be wrong, bug googling "less extend" will probably find less — |
+1 for :extend On Oct 31, 2012, at 7:16 PM, matthewdl notifications@github.com wrote: @jonschlinkert https://github.com/jonschlinkert Your proposed syntax is Plus, by making :extend in the declaration, it more accurately describes Very nice work. This syntax, in itself, makes me like the whole concept of — |
@Soviut - when you reply in emails, click off the quote - then we get cleaner comments :) @jonschlinkert nice. I like the idea we can use it for both stand alone and as part of the selector. some questions
If I get some time I'll look at implementing this and also figuring out how to fix #1104.. does every agree with #1104 btw? I haven't had time to figure it out. I would love it If anyone else would prefer to do the coding, as I have plenty of other less coding to do. |
I like @jonschlinkert suggestion too. I wouldn't want the inheritance definition get lost among property definitions. It can still be surrounded by other pseudo-class definitions, though, but then I would probably put them on separate lines like so: .alert
:extend(.alert-important, .alert-danger)
:first-child
:hover
{
background: red;
...
} Of course the example is rather esoteric and in LESS I should use the One concern that I have is about pseudo-elements. The following line: .alert::before:extend(.shiny-tip) {} Is supposed to mean that the P.S. With the Shadow DOM spec we will see way more pseudo-elements coming! |
Isn't it confusing allowing things after :extend? I have an idea what it |
True, the :extend syntax, while CSS in spirit, deviates significantly from the SASS style @extend in terms of implementation. |
Well, not necessarily but we need to think about these cases. We could |
@agatronic the point you bring up is valid for straight CSS as well, meaning that it seems confusing. It wouldn't surprise me if a lot of front-end folks didn't know that the spec currently allows for chaining pseudo-selectors at all. My view (conjecture?) is that if you use pseudo-selectors regularly in your CSS, then you should have very little learning curve here. As for whether or not chaining should be allowed, it seems that it would be difficult to implement without it, at least eventually. Just consider hover and active as prime examples. I think if we view the problem from 20,000 feet, we shouldn't allow the syntax to determine the objective. It makes the most sense to consider the following as a typical use-case, and a reason to allow chaining: E:hover:extend(...) {} We make regular use of these pseudo-selectors: E:hover {}
E:active {}
E:before {}
E:after {} So my suggestion is to think if it in that context, rather than thinking of more complicated and less-often used use cases like: p:first-child:first-letter:first-line:after:hover {} Which, btw, is valid. But would anyone use it? I guess, yeah, sure if I had to... but it's not a probably not a good use case lol. That being said, I'm aware that you have to weigh this against other considerations, so it's ultimately up to you whether or not chaining will be introduced in the first iteration of the :extend feature. My vote is that :extend is still powerful without chaining, but even more useful with it. So do whatever is pragmatic for now.. |
It wasn't chaining that I was concerned with.. it was having the extend in |
To jump in, no, I don't think To extend a block like above:
This allows you to separate and use LESS in coherent blocks, extending only the properties you want to base classes, while having some properties only be local one-off values, or controlling output order.
In other words, this syntax I think would be simpler to understand and also a bit more powerful than SASS. |
Sounds good. |
I've had some time to test :extend in 1_4_0 (using the default test files as well as Bootstrap's Less), and so far it works as expected. Lot's more testing to do, but I'm also looking forward to seeing feedback from others. Thanks for the hard work on this! |
It would be much appreciated if you could contribute some examples and edge cases to add to the tests. |
@Synchro no problem, I'd be happy to. I'll try to put something together this week. |
Check the existing tests.. there are a number already. Would appreciate any comments on whether less should copy the selector I've still yet to expand it to allow using extend in the selector.. One question on the stand alone...
Or
Or both? |
I think only the first example should be valid. &:extend conforms to a known pattern in Less |
I agree. It should follow the correct selector logic if it's going to be treated as a pseudo-selector. The first example reads as "extend .b with .a" while the second example reads as "extend the decendents of .b". |
@jonschlinkert @Soviut Agreed. |
Documentation-wise, I think the |
@Soviut +1 to that, too. |
@agatronic and forgot to mention, no problem on the tests either way. I did run the tests included in 1_4_0, everything checks out. If you want me to throw more together as 1_4_0 progresses just say the word |
this is the bug I would appreciate comments on |
@agatronic will do, I'm putting something together since there is some thought involved here. I'll update as soon as I have something to share. |
+1 for extend |
why not to just steal @extend syntax from SASS? |
Because sass has a different design philosophy. We have already decided the |
I have finally gotten around to testing this and wanted to post my initial findings. I have been using the alpha version less-1.4.0-alpha.js on the client-side only (no command line yet - not that it should be any different really). So far, everything works as I would expect except for two major drawbacks which can be explained with one example. Take the following code which is located in one of my root LESS files:
Issue 1 - styles defined within media queries do not get extended. Anything trying to extend the .container class only gets the
Issue 2 - compound selectors do not get extended. However, the first participant DOES get extended. For example, the following incorrectly extends the
I wish I could provide a solution. Hope this helps. |
Sass extend is here.
http://sass-lang.com/docs/yardoc/file.SASS_REFERENCE.html#extend
More simple syntax, use +.
converted this.
See also test code.