-
Notifications
You must be signed in to change notification settings - Fork 469
Open
Description
input.scss
.one {
color: red;
.foo, .bar { color: yellow; }
&, &:link, &:visited { color: green; }
&:hover { color: blue; }
}
.two {
@extend .one;
}
Actual results
.one, .two {
color: red; }
.one .foo, .two .foo, .one .bar, .two .bar {
color: yellow; }
.one, .two, .one:link, .one:visited {
color: green; }
.one:hover, .two:hover {
color: blue; }
Expected result
ruby sass 3.7.4
.one, .two {
color: red; }
.one .foo, .two .foo, .one .bar, .two .bar {
color: yellow; }
.one, .two, .one:link, .two:link, .one:visited, .two:visited {
color: green; }
.one:hover, .two:hover {
color: blue; }
version info:
libsass-python 0.21.0 [Python]
libsass 3.6.5 (Sass Compiler) [C/C++]
Metadata
Metadata
Assignees
Labels
No labels