improve import support with media features

This commit is contained in:
Alexis Sellier
2012-01-05 21:31:39 +01:00
parent d8441445a5
commit 7dd31ff654
6 changed files with 14 additions and 5 deletions

5
test/css/import.css vendored
View File

@@ -16,3 +16,8 @@
width: 10px;
height: 30%;
}
@media screen and (max-width: 600px) {
body {
width: 100%;
}
}

View File

@@ -8,3 +8,4 @@
width: 10px;
height: @a + 10%;
}
@import "import/import-test-e" screen and (max-width: 600px);

View File

@@ -0,0 +1,2 @@
body { width: 100% }