summaryrefslogtreecommitdiff
path: root/vendor/leafo/lessphp/tests/inputs/compile_on_mixin.less
blob: 79d628f49f594fc0e6229ba6ac953e57bb6c33b2 (plain)
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

@mixin {
	height: 22px;
	ul {
		height: 20px;
		li {
			@color: red;
			height: 10px;
			div span, link {
				margin: 10px;
				color: @color;
			}
		}

		div, p {
			border: 1px;
			&.hello {
				color: green;
			}

			:what {
				color: blue;
			}
		}


		a {
			b {
				color: blue;
			}
		}
	}
}



body {
	@mixin;
}