Skip to content

Commit

Permalink
Merge pull request sass#894 from xzyfer/feat/issue-2150
Browse files Browse the repository at this point in the history
Add specs for issue 2150
  • Loading branch information
xzyfer authored Aug 23, 2016
2 parents b0b8716 + abb0875 commit 4972d3f
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
3 changes: 3 additions & 0 deletions spec/libsass-todo-issues/issue_2150/expected_output.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
@media (min-width: 100px) {
.parent > .foo {
color: blue; } }
9 changes: 9 additions & 0 deletions spec/libsass-todo-issues/issue_2150/input.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
@media (min-width: 100px) {
.parent > %child {
color: blue;
}
}

.foo {
@extend %child;
}

0 comments on commit 4972d3f

Please # to comment.