all repos — wp-autoless @ c037d09840f32b02aec40f2b34d2647692182e24

vendor/leafo/lessphp/tests/inputs/import.less (view raw)

 1
 2
 3
 4
 5
 6
 7
 8
 9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
@import 'file1.less'; // file found and imported

@import "not-found";

@import "something.css" media;
@import url("something.css") media;
@import url(something.css) media, screen, print;

@color: maroon;

@import url(file2); // found and imported

body {
	line-height: 10em;
	@colors;
}

div {
	@color: fuchsia;
	@import "file2";
}


.mixin-import() {
	@import "file3";
}

.one {
	.mixin-import();
	color: blue;
}

.two {
	.mixin-import();
}


#merge-import-mixins {
	@import "a";
	@import "b";
	div { .just-a-class; }
}


@import "inner/file1";


// test bubbling variables up from imports, while preserving order

pre {
	color: @someValue;
}

@import "file3";