Skip to content

Commit

Permalink
Remove MQs from pseudo-elements test
Browse files Browse the repository at this point in the history
  • Loading branch information
iamvdo committed Aug 25, 2014
1 parent 315c068 commit 7064cfa
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 8 deletions.
9 changes: 5 additions & 4 deletions test/features/pseudoElements.css
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
.e::after {
content: 'foo';
}
@media screen {
.e::after {
content: 'bar';
}
.e:hover::after {
content: 'foo';
}
.e::after:hover {
content: 'foo';
}
10 changes: 6 additions & 4 deletions test/features/pseudoElements.out.css
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
.e:after {
content: 'foo';
}@media screen {
.e:after {
content: 'bar';
}
}
.e:hover:after {
content: 'foo';
}
.e:after:hover {
content: 'foo';
}

0 comments on commit 7064cfa

Please sign in to comment.