source: Dev/trunk/src/client/util/less/test/css/mixins-pattern.css

Last change on this file was 483, checked in by hendrikvanantwerpen, 11 years ago

Added Dojo 1.9.3 release.

File size: 487 bytes
Line 
1.zero {
2  variadic: true;
3  zero: 0;
4  one: 1;
5  two: 2;
6  three: 3;
7}
8.one {
9  variadic: true;
10  one: 1;
11  one-req: 1;
12  two: 2;
13  three: 3;
14}
15.two {
16  variadic: true;
17  two: 2;
18  three: 3;
19}
20.three {
21  variadic: true;
22  three-req: 3;
23  three: 3;
24}
25.left {
26  left: 1;
27}
28.right {
29  right: 1;
30}
31.border-right {
32  color: black;
33  border-right: 4px;
34}
35.border-left {
36  color: black;
37  border-left: 4px;
38}
39.only-right {
40  right: 33;
41}
42.only-left {
43  left: 33;
44}
45.left-right {
46  both: 330;
47}
Note: See TracBrowser for help on using the repository browser.