Removed Shorthand and Ratio parsers; Fixed some issues with paren depth state; Adjusted tests to pass on new output

This commit is contained in:
Dustin Cass
2012-08-21 18:02:12 -07:00
committed by Luke Page
parent b371fc90a0
commit bf1823f109
7 changed files with 31 additions and 91 deletions

View File

@@ -20,7 +20,7 @@
body { max-width: @base * 60; }
}
@media all and (device-aspect-ratio: 16/9) {
@media all and (device-aspect-ratio: 16 / 9) {
body { max-width: 800px; }
}
@@ -172,7 +172,7 @@ body {
}
}
@media (-webkit-min-device-pixel-ratio: 2), (min--moz-device-pixel-ratio: 2), (-o-min-device-pixel-ratio: 2/1), (min-resolution: 2dppx), (min-resolution: 128dpcm) {
@media (-webkit-min-device-pixel-ratio: 2), (min--moz-device-pixel-ratio: 2), (-o-min-device-pixel-ratio: 2 / 1), (min-resolution: 2dppx), (min-resolution: 128dpcm) {
.b {
background: red;
}
@@ -204,4 +204,4 @@ body {
@media (max-width: 900px) {
body { font-size: 11px; }
}
}
}