lib/less/js/test/css/import.css in less-2.3.3 vs lib/less/js/test/css/import.css in less-2.4.0
- old
+ new
@@ -1,8 +1,10 @@
@import url(http://fonts.googleapis.com/css?family=Open+Sans);
-@import url(something.css) screen and (color) and (max-width: 600px);
+@import url(/absolute/something.css) screen and (color) and (max-width: 600px);
+
+@import url("//ha.com/file.css") (min-width: 100px);
#import-test {
height: 10px;
color: #ff0000;
width: 10px;
height: 30%;
@@ -16,6 +18,21 @@
color: #ff0000;
}
.mixin {
height: 10px;
color: #ff0000;
+}
+@media screen and (max-width: 601px) {
+ #css {
+ color: yellow;
+ }
+}
+@media screen and (max-width: 602px) {
+ body {
+ width: 100%;
+ }
+}
+@media screen and (max-width: 603px) {
+ #css {
+ color: yellow;
+ }
}