Skip to content

Commit

Permalink
Add specs for issue 1248 (@extend specificity problems)
Browse files Browse the repository at this point in the history
  • Loading branch information
mgol committed May 28, 2015
1 parent d1cbee4 commit b9faca2
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 0 deletions.
1 change: 1 addition & 0 deletions spec/libsass-todo-issues/issue_1248/expected.compact.css
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
.a.b .c, .a .c, .a.b .d, .a .d { top: 0; }
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
.a.b .c,.a .c,.a.b .d,.a .d{top: 0}
3 changes: 3 additions & 0 deletions spec/libsass-todo-issues/issue_1248/expected.expanded.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
.a.b .c, .a .c, .a.b .d, .a .d {
top: 0;
}
2 changes: 2 additions & 0 deletions spec/libsass-todo-issues/issue_1248/expected_output.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
.a.b .c, .a .c, .a.b .d, .a .d {
top: 0; }
9 changes: 9 additions & 0 deletions spec/libsass-todo-issues/issue_1248/input.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
.a.b .c {
top: 0;
}
.a {
@extend .b;
}
.a .d {
@extend .c;
}

0 comments on commit b9faca2

Please sign in to comment.