all repos — wp-autoless @ master

vendor/leafo/lessphp/tests/inputs/selector_expressions.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
@color: blue;

something @{color}, world {
	color: blue;
}

.div {
	@color: red;
	(3434) {
		height: 100px;
	}

	cool @{color} {
		height: 4000px;
	}
}

.heck(@a) { color: @a+10 }

.spanX (@index) when (@index > 0) {
	.span@{index} { .heck(@index) }
	.spanX(@index - 1);
}
.spanX (0) {}

.spanX (5);