08-27-周三_17-09-29

This commit is contained in:
2025-08-27 17:10:05 +08:00
commit 86df397d8f
12735 changed files with 1145479 additions and 0 deletions

31
node_modules/less/test/less-bom/import.less generated vendored Normal file
View File

@@ -0,0 +1,31 @@
/** comment at the top**/
@import url(http://fonts.googleapis.com/css?family=Open+Sans);
@import url(/absolute/something.css) screen and (color) and (max-width: 600px);
@import (optional) "file-does-not-exist.does-not-exist";
@var: 100px;
@import url("//ha.com/file.css") (min-width:@var);
#import-test {
.mixin;
width: 10px;
height: (@a + 10%);
}
@import "import/import-test-e" screen and (max-width: 600px);
@import url("import/import-test-a.less");
@import (less, multiple) "import/import-test-d.css" screen and (max-width: 601px);
@import (multiple) "import/import-test-e" screen and (max-width: 602px);
@import (less, multiple) url("import/import-test-d.css") screen and (max-width: 603px);
@media print {
@import (multiple) "import/import-test-e";
}
@charset "UTF-8"; // climb on top #2126