]> git.wh0rd.org - tt-rss.git/blob - lib/dijit/themes/tundra/form/Checkbox.css
googlereaderimport: support summary element
[tt-rss.git] / lib / dijit / themes / tundra / form / Checkbox.css
1 .tundra .dijitToggleButton .dijitCheckBoxIcon {
2 background-image: url('../images/checkmarkNoBorder.png');
3 }
4
5 .dj_ie6 .tundra .dijitToggleButton .dijitCheckBoxIcon {
6 background-image: url('../images/checkmarkNoBorder.gif');
7 }
8
9 .tundra .dijitCheckBox,
10 .tundra .dijitCheckBoxIcon /* inside a toggle button */ {
11 background-image: url('../images/checkmark.png'); /* checkbox sprite image */
12 background-repeat: no-repeat;
13 width: 16px;
14 height: 16px;
15 margin: 0 2px 0 0;
16 padding: 0;
17 }
18
19 .dj_ie6 .tundra .dijitCheckBox,
20 .dj_ie6 .tundra .dijitCheckBoxIcon /* inside a toggle button */ {
21 background-image: url('../images/checkmark.gif'); /* checkbox sprite image */
22 }
23
24 .tundra .dijitCheckBox,
25 .tundra .dijitToggleButton .dijitCheckBoxIcon {
26 /* unchecked */
27 background-position: -16px;
28 }
29
30 .tundra .dijitCheckBoxChecked,
31 .tundra .dijitToggleButtonChecked .dijitCheckBoxIcon {
32 /* checked */
33 background-position: 0;
34 }
35
36 .tundra .dijitCheckBoxDisabled {
37 /* disabled */
38 background-position: -48px;
39 }
40
41 .tundra .dijitCheckBoxCheckedDisabled {
42 /* disabled but checked */
43 background-position: -32px;
44 }
45
46 .tundra .dijitCheckBoxHover {
47 /* hovering over an unchecked enabled checkbox */
48 background-position: -80px;
49 }
50
51 .tundra .dijitCheckBoxCheckedHover {
52 /* hovering over a checked enabled checkbox */
53 background-position: -64px;
54 }