-
Notifications
You must be signed in to change notification settings - Fork 463
New issue
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
@extends output missing selector when using same name for tag and attribute #2347
Comments
mgreter
added a commit
to mgreter/sass-spec
that referenced
this issue
Mar 10, 2017
mgreter
added a commit
to mgreter/libsass
that referenced
this issue
Mar 10, 2017
xzyfer
pushed a commit
that referenced
this issue
Mar 21, 2017
xzyfer
added a commit
to sass/sass-spec
that referenced
this issue
Mar 21, 2017
This PR activates specs for sass/libsass#2347
#2350 only partially addressed this issue. Before -custom2, [custom2], .custom2 {
+custom2, .custom2 {
display: flex;
}
-[custom3], custom3, .custom3 {
+[custom3], .custom3 {
display: flex;
} After -custom2, [custom2], .custom2 {
+custom2, .custom2 {
display: flex;
}
[custom3], custom3, .custom3 { |
Fixed by #2354 |
xzyfer
added a commit
to sass/sass-spec
that referenced
this issue
Mar 30, 2017
This PR activates specs for sass/libsass#2347
xzyfer
added a commit
to sass/sass-spec
that referenced
this issue
Mar 30, 2017
This PR activates specs for sass/libsass#2347
mgreter
added a commit
that referenced
this issue
Apr 8, 2017
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@extends output missing selector when using same name for tag and attribute
There is a strange issue when using @extend on a selector with a tag name and an attribute name with the same name: the second one is absent from the output.
input.scss
libsass 3.5.0.beta.3
Same result on http://sass.js.org/
version info:
Expected:
Spec sass/sass-spec#1091
The text was updated successfully, but these errors were encountered: