We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The following SCSS:
@mixin m() { .a & { @content; } } :not(:last-of-type) { top: 10px; @include m { top: 10px; } }
libsass from node-sass 3.0.0-beta.4 turns into:
3.0.0-beta.4
:not(:last-of-type) { top: 10px; } .a :not( :last-of-type) { top: 10px; }
Note the two spaces before the second :last-of-type.
:last-of-type
Latest Ruby Sass gives:
:not(:last-of-type) { top: 10px; } .a :not(:last-of-type) { top: 10px; }
The text was updated successfully, but these errors were encountered:
Add spec for not inserting excessive white spaces in :not() selectors
d561a61
Refs sass/libsass#1025
Spec submitted: sass/sass-spec#297
Sorry, something went wrong.
Fix minor white-space issue with wrapped selectors
ed30ce5
Fixes sass#1025
mgreter
Successfully merging a pull request may close this issue.
The following SCSS:
libsass from node-sass
3.0.0-beta.4
turns into:Note the two spaces before the second
:last-of-type
.Latest Ruby Sass gives:
The text was updated successfully, but these errors were encountered: