Skip to content

Commit 6861205

Browse files
authored
Merge pull request #671 from Cerdic/Issue/leafo/517
Test case for #517
2 parents d8f4fdd + 04ffd6d commit 6861205

File tree

3 files changed

+16
-0
lines changed

3 files changed

+16
-0
lines changed

tests/inputs/media.scss

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -206,3 +206,10 @@ dt {
206206
}
207207
}
208208

209+
@media screen and (max-width: 749px) {
210+
@media screen and (max-width: 600px) and (min-width: 361px) {
211+
.item {
212+
color:red;
213+
}
214+
}
215+
}

tests/outputs/media.css

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -101,3 +101,7 @@ code {
101101
@media only screen and (color: blue) and (width: 13) {
102102
.only-screen {
103103
height: 15px; } }
104+
105+
@media screen and (max-width: 749px) and (max-width: 600px) and (min-width: 361px) {
106+
.item {
107+
color: red; } }

tests/outputs_numbered/media.css

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -126,3 +126,8 @@ code pre {
126126
/* line 202, inputs/media.scss */
127127
.only-screen {
128128
height: 15px; } }
129+
130+
@media screen and (max-width: 749px) and (max-width: 600px) and (min-width: 361px) {
131+
/* line 211, inputs/media.scss */
132+
.item {
133+
color: red; } }

0 commit comments

Comments
 (0)