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
Refs #592
The following SCSS:
.a { top: 0; } .b { .c { @extend .a; } } .d { > .e { @extend .a; @extend .c; } }
is converted by Ruby Sass 3.4.13 to:
.a, .b .c, .b .d > .e, .d > .e { top: 0; }
libsass 3.2.0-beta.5 produces:
.a, .b .c, .d > .e { top: 0; }
EDIT: I simplified the test case.
The text was updated successfully, but these errors were encountered:
Possibly related: #823
EDIT: but maybe not related; my test case looks a little different as it extends a class that is wrapped in another selector.
Sorry, something went wrong.
Spec added sass/sass-spec#322
Fix various pending issues [WIP]
021bdfb
sass#1091 sass#1063 sass#823
is_superselector
aa5043d
mgreter
No branches or pull requests
Refs #592
The following SCSS:
is converted by Ruby Sass 3.4.13 to:
libsass 3.2.0-beta.5 produces:
EDIT: I simplified the test case.
The text was updated successfully, but these errors were encountered: