Skip to content

Commit

Permalink
add test for issue 146
Browse files Browse the repository at this point in the history
  • Loading branch information
Hampton Catlin committed Aug 9, 2013
1 parent 9d2942c commit 8a6a1c3
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
4 changes: 4 additions & 0 deletions spec/issues/libsass/issue_146/expected_output.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
button {
background: green; }
button:hover {
background: black; }
10 changes: 10 additions & 0 deletions spec/issues/libsass/issue_146/input.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
%btn-style-default {
background: green;
&:hover{
background: black;
}
}

button {
@extend %btn-style-default;
}

0 comments on commit 8a6a1c3

Please sign in to comment.