Earlier quoted context omitted.
What's so bad about having to rename a file?
If you're using dependency managers like bower you either have to import the stylesheet in your or use the @include in a sass stylesheet, both will be a new HTTP request. Whereas if you compile it in one file, you save an extra request (now imagine you use multiple dependencies each with their own css file). Renaming a file would defeat the whole point of dependency management.
Sass 3.3 is released
21–30 of 35 posts
Re: Sass 3.3 is released
#22> You can now write &-suffix (or &_suffix, or even &suffix if you really want) and Sass will make it work. Now you can finally use BEM in Sass without the need of verbose mixins. Good stuff!
AlwaysTwisted has a really great guide on this for more info and copy-and-pastability. http://alwaystwisted.com/post.php?s=2014-02-27-even-easier-b... So excited about this, absolutely brilliant. I did notice some frameworks that I was using (I think it was Bourbon) breaking with SASS 3.3 though.
Re: Sass 3.3 is released
#23It's just some kind of script. It is not CSS.
Re: Sass 3.3 is released
#24While I don't dabble often in markup, I'm curious. Is Sass still mostly entrenched in the Ruby world (any alternative implementations?) or has it picked up adoption with other devs compared to Less?
Re: Sass 3.3 is released
#25Whatever line-wrap/justification setting they're using is horribly, illegibly broken on mobile Safari. Some irony.
word-break: break-all
which sets the character-splitting to CJK (Chinese/Japanese/Korean), where splitting between characters is OK. This should generally not be used on English text.Perhaps the author meant to use
word-wrap: break-word
Which allows it to split a word that is too long to fit on a single line, instead of stretching/extending outside of the text area.Re: Sass 3.3 is released
#26While I don't dabble often in markup, I'm curious. Is Sass still mostly entrenched in the Ruby world (any alternative implementations?) or has it picked up adoption with other devs compared to Less?
Re: Sass 3.3 is released
#27Whatever line-wrap/justification setting they're using is horribly, illegibly broken on mobile Safari. Some irony.
For some reason, at width word-break: break-all which sets the character-splitting to CJK (Chinese/Japanese/Korean), where splitting between characters is OK. This should generally not be used on English text. Perhaps the author meant to use word-wrap: break-word Which allows it to split a word that is too long to fit on a single line, instead of stretching/extending outside of the text area.
Re: Sass 3.3 is released
#28I'm using it with rails, anyone able to get things working with sprockets, etc?
Re: Sass 3.3 is released
#29While I don't dabble often in markup, I'm curious. Is Sass still mostly entrenched in the Ruby world (any alternative implementations?) or has it picked up adoption with other devs compared to Less?
There is nothing that requires Sass and other Ruby programs to be endemic to Ruby world. The programming language it is implemented in is an implementation detail after all.
I mean, libsass is a thing, but it's not nearly feature-complete. You end up bolting a Ruby thing into your pipeline somewhere, which is a bit of a drag depending on how you're used to doing things. (For me, I just let Play handle it, but if somebody hadn't made play-sass I probably wouldn't be using Sass at all.)
Re: Sass 3.3 is released
#30While I don't dabble often in markup, I'm curious. Is Sass still mostly entrenched in the Ruby world (any alternative implementations?) or has it picked up adoption with other devs compared to Less?
There's lib-sass[1] a C implementation, but it's not at feature parity yet. [1] http://libsass.org