Files
deb-python-lesscpy/lesscpy/test/css/calls.css
Sascha Peilicke d8cd1fa968 Don't switch operands for non-implemented operators.
Bot __truediv__(int, float) and __add__(int, float) raise
NotImplemented, but switching only helps in the case of addition.
Division isn't commutative so simply cast the int to float. Due to this,
lesscpy now generates the same result as lessc in the modified test
case.
2013-08-08 18:25:22 +02:00

33 lines
689 B
CSS

#standard {
width: 16;
height: undefined("self");
border-width: 5;
variable: 11;
decrement: 9;
rounded: 11;
roundedpx: 3px;
}
#escapes {
escaped: -Some::weird(#thing, y);
escaped1: -Some::weird(#thing, z);
eformat: rgb(32, 128, 64);
}
#format {
format: "rgb(32, 128, 64)";
format-string: "hello world";
format-multiple: "hello earth 2";
format-url-encode: 'red is %23ff0000';
}
#more {
width: 2px;
height: 1px;
top: 50%;
}
#colors {
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#333333', GradientType=1);
}
a {
background-image: linear-gradient(top,#ffffff,#333333);
background-image: linear-gradient(top,#a6a6a6,#000000);
}