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
.test .testa { @at-root #{"%foo"} { color: red; } @extend %foo; }
Compiles to:
.test .testa .testa { color: red; }
Instead of the expected:
.test .testa { color: red; }
If @at-root #{"%foo"} is changed to @at-root %foo it works as expected but these two should be semantically identical.
@at-root #{"%foo"}
@at-root %foo
cc: @eoneill
The text was updated successfully, but these errors were encountered:
Duplicate of #1210 and will be fixed once my latest refactoring is merged: #1249!
Sorry, something went wrong.
Add specs for issue 1297
19dac4e
This PR add specs for sass/libsass#1297
Specs added sass/sass-spec#419
We now have a passing spec test since #1249 was merged 🎈
mgreter
No branches or pull requests
Compiles to:
Instead of the expected:
If
@at-root #{"%foo"}
is changed to@at-root %foo
it works as expected but these two should be semantically identical.cc: @eoneill
The text was updated successfully, but these errors were encountered: