all repos — wp-autoless @ c037d09840f32b02aec40f2b34d2647692182e24

vendor/leafo/lessphp/tests/inputs/compile_on_mixin.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
@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;
}