Skip to content

Commit 5d26295

Browse files
committed
Add todo spec test for libsass issue 2017
sass/libsass#2017
1 parent 81bc577 commit 5d26295

File tree

2 files changed

+22
-0
lines changed

2 files changed

+22
-0
lines changed
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
foo {
2+
bar: baz; }
3+
4+
foo a:not(.btn):not(foo) {
5+
color: red; }
6+
foo a:not(.btn):not(foo) {
7+
color: red; }
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
foo {
2+
bar: baz;
3+
}
4+
5+
@mixin link() {
6+
a:not(.btn) {
7+
color: red;
8+
}
9+
}
10+
11+
foo {
12+
@include link;
13+
@extend .btn;
14+
@include link;
15+
}

0 commit comments

Comments
 (0)