all repos — wp-autoless @ c037d09840f32b02aec40f2b34d2647692182e24

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

 1
 2
 3
 4
 5
 6
 7
 8
 9
 10
 11
 12
 13
 14
 15
 16
 17
 18
body {
	@hello: "world";
	e1: e("this is simple");
	e2: e("this is simple", "cool lad");
	e3: e(1232);
	e4: e(@hello);
	e5: e("one" + 'more');

	t1: ~"eating rice";
	t2: ~"string cheese";
	t3: a b c ~"string me" d e f;
	t4: ~"string @{hello}";
}

.class {
	filter: ~"progid:DXImageTransform.Microsoft.AlphaImageLoader(src='image.png')";
}