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:
%foo { test: outer; &-inner { test: inner; } } .foo { @extend %foo; &.inner { @extend %foo-inner; } }
EXPECTED: (Ruby Sass and LibSass 3.2.5)
.foo { test: outer; } .foo.inner { test: inner; }
ACTUAL: (with Node-Sass 3.4.x latest)
.foo { test: outer; } -inner.foo { test: inner; }
The text was updated successfully, but these errors were encountered:
Fixed by #1675. Creating a spec for good measure.
Sorry, something went wrong.
Activate specs for issue 1673
12508e5
This PR activates specs for sass/libsass#1673
Spec added sass/sass-spec#596
bcf0f1e
13d5be6
mgreter
No branches or pull requests
TEST:
EXPECTED: (Ruby Sass and LibSass 3.2.5)
ACTUAL: (with Node-Sass 3.4.x latest)
The text was updated successfully, but these errors were encountered: