Skip to content

Commit dc204dd

Browse files
committed
Add todo spec test for libsass issue 673
sass/libsass#673
1 parent 81bc577 commit dc204dd

File tree

4 files changed

+17
-0
lines changed

4 files changed

+17
-0
lines changed
+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
Error: You may not @extend an outer selector from within @media.
2+
You may only @extend selectors within the same directive.
3+
From "@extend .example" on line 9 of /sass/spec/libsass-issues/issue_673/input.scss.

spec/libsass-todo-issues/issue_673/expected_output.css

Whitespace-only changes.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
.example {
2+
padding-left: 2rem;
3+
padding-right: 2rem;
4+
}
5+
@media screen and (min-width:768px) {
6+
7+
#footer {
8+
.row {
9+
@extend .example;
10+
}
11+
}
12+
13+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
65

0 commit comments

Comments
 (0)