Skip to content

Commit 39cdf67

Browse files
committed
Merge pull request #792 from mgreter/todo/issue_2017
Add todo spec test for libsass issue 2017
2 parents 4a68355 + 5d26295 commit 39cdf67

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)