aboutsummaryrefslogtreecommitdiff
path: root/mod/less/vendors/lessphp/tests/inputs/import.less
blob: 250d1a3f34b20976bf02ec93bfc8c1b89aa3fc6b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
@import 'file1.less'; // file found and imported

@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";
}