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

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

Added Dojo 1.9.3 release.

File size: 1.0 KB
Line 
1.light1 {
2  color: white;
3  margin: 1px;
4}
5.light2 {
6  color: black;
7  margin: 1px;
8}
9.max1 {
10  width: 6;
11}
12.max2 {
13  width: 8;
14}
15.glob1 {
16  margin: auto auto;
17}
18.ops1 {
19  height: gt-or-eq;
20  height: lt-or-eq;
21}
22.ops2 {
23  height: gt-or-eq;
24  height: not-eq;
25}
26.ops3 {
27  height: lt-or-eq;
28  height: not-eq;
29}
30.default1 {
31  content: default;
32}
33.test1 {
34  content: "true.";
35}
36.test2 {
37  content: "false.";
38}
39.test3 {
40  content: "false.";
41}
42.test4 {
43  content: "false.";
44}
45.test5 {
46  content: "false.";
47}
48.bool1 {
49  content: true and true;
50  content: true;
51  content: false, true;
52  content: false and true and true, true;
53  content: false, true and true;
54  content: false, false, true;
55  content: false, true and true and true, false;
56  content: not false;
57  content: not false and false, not false;
58}
59.equality-units {
60  test: pass;
61}
62.colorguardtest {
63  content: is #ff0000;
64  content: is not #0000ff its #ff0000;
65  content: is not #0000ff its #800080;
66}
67.stringguardtest {
68  content: is theme1;
69  content: is not theme2;
70  content: is theme1 no quotes;
71}
Note: See TracBrowser for help on using the repository browser.