]> git.pond.sub.org Git - eow/blob - static/dojo-release-1.1.1/dijit/themes/tundra/form/Checkbox.css.commented.css
add Dojo 1.1.1
[eow] / static / dojo-release-1.1.1 / dijit / themes / tundra / form / Checkbox.css.commented.css
1 .tundra .dijitToggleButton .dijitCheckBoxIcon {
2         background-image: url('../images/checkmarkNoBorder.gif');
3 }
4
5 .tundra .dijitCheckBox,
6 .tundra .dijitCheckBoxIcon              /* inside a toggle button */    {
7         background-image: url('../images/checkmark.gif'); /* checkbox sprite image */
8         background-repeat: no-repeat;
9         width: 16px;
10         height: 16px;
11         margin: 0;
12         padding: 0;
13 }
14
15 .tundra .dijitCheckBox,
16 .tundra .dijitToggleButton .dijitCheckBoxIcon {
17         /* unchecked */
18         background-position: -16px;
19 }
20
21 .tundra .dijitCheckBoxChecked,
22 .tundra .dijitToggleButtonChecked .dijitCheckBoxIcon {
23         /* checked */
24         background-position: 0px;
25 }
26
27 .tundra .dijitCheckBoxDisabled {
28         /* disabled */
29         background-position: -48px;
30 }
31
32 .tundra .dijitCheckBoxCheckedDisabled {
33         /* disabled but checked */
34         background-position: -32px;
35 }
36
37 .tundra .dijitCheckBoxHover,
38 .tundra .dijitCheckBoxFocused {
39         /* hovering over an unchecked enabled checkbox */
40         background-position: -80px;
41 }
42
43 .tundra .dijitCheckBoxCheckedHover,
44 .tundra .dijitCheckBoxCheckedFocused {
45         /* hovering over a checked enabled checkbox */
46         background-position: -64px;
47 }