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
This is from sass/node-sass#1324:
.btn { .open& { color: #000; } }
as of https://github.com/sass/libsass/tree/13ae62def291c4934ad04d0d527e84b4021d60a3 produces:
.open& { color: #000; }
and this is rejected by Ruby Sass.
(I hope this is not a duplicate, the closest match I could find was #1491)
The text was updated successfully, but these errors were encountered:
Add test for libsass issue 1822
4fdf41f
& closely after selector doesn't work sass/node-sass#1324 sass/libsass#1822
This should be the proper behaviour as of Sass 4.0 per sass/sass#1425
Sorry, something went wrong.
We'll leave this for the time being to see what happens with this in Ruby Sass.
If sass/sass#1425 is trying to match LESS's behavior I would expect
to produce
.open.btn { color: #000; }
(rather than output the & into the CSS)
&
sass/sass#1425 is the correct place for that discussion.
mgreter
No branches or pull requests
This is from sass/node-sass#1324:
as of https://github.com/sass/libsass/tree/13ae62def291c4934ad04d0d527e84b4021d60a3 produces:
and this is rejected by Ruby Sass.
(I hope this is not a duplicate, the closest match I could find was #1491)
The text was updated successfully, but these errors were encountered: