Sam Richard
Sam Richard
Thanks for chiming in Rich, but I think that actually is the opposite of what we're looking to do. This is a language level change, so an end user shouldn't...
For one, just about all of the optimization tools are designed to not have full stylesheets loaded in but only load in what's needed when, and to add on top...
@chriseppstein The issue with what you've written is it actually goes against the best practices of responsive web design. When working with media queries, the best practice is to make...
I do this too. Being able to have something like `/sass/_partials/*` with everything under `_partials` considered a partial would be absolutely awesome for me, and make finding/opening stuff in the...
You need to interpolate the `$var` in order to have it print out the 10px there: ``` scss $var: 10px; height: calc(100% - #{$var}); ```
@nex3 what about something like the following: ``` scss @each $color in $colors with index $i ```
IMO requiring people to know what "index" means when dealing with iterators is OK, but maybe "counter" would work too (although I bet most people who would use this feature...
Yah, I understand that's a concern. I agree that it's entirely possible for this functionality to be done in round-about ways currently and that many languages don't have an each...
One place where I think this can make it much easier to work is an each with key/value. Take the following (which is what we need to do now): ```...
No worries! I totally understand; OSS is volunteer work. If you have a branch that you've started working on this on/thoughts on how you'd like to handle it, I can...