Changeset 13566
- Timestamp:
- 05/05/08 00:03:19 (7 months ago)
- Location:
- dijit/trunk/themes/tundra
- Files:
-
- 6 modified
-
form/Checkbox.css (modified) (3 diffs)
-
form/RadioButton.css (modified) (3 diffs)
-
images/checkmark.gif (modified) (previous)
-
images/checkmark.png (modified) (previous)
-
images/checkmarkNoBorder.gif (modified) (previous)
-
images/checkmarkNoBorder.png (modified) (previous)
Legend:
- Unmodified
- Added
- Removed
-
dijit/trunk/themes/tundra/form/Checkbox.css
r13332 r13566 1 1 .tundra .dijitToggleButton .dijitCheckBoxIcon { 2 background-image: url('../images/checkmarkNoBorder.png'); 3 } 4 5 .dj_ie6 .tundra .dijitToggleButton .dijitCheckBoxIcon { 2 6 background-image: url('../images/checkmarkNoBorder.gif'); 3 7 } … … 5 9 .tundra .dijitCheckBox, 6 10 .tundra .dijitCheckBoxIcon /* inside a toggle button */ { 7 background-image: url('../images/checkmark. gif'); /* checkbox sprite image */11 background-image: url('../images/checkmark.png'); /* checkbox sprite image */ 8 12 background-repeat: no-repeat; 9 13 width: 16px; … … 11 15 margin: 0; 12 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 */ 13 22 } 14 23 -
dijit/trunk/themes/tundra/form/RadioButton.css
r13332 r13566 1 1 .tundra .dijitToggleButton .dijitRadio, 2 2 .tundra .dijitToggleButton .dijitRadioIcon { 3 background-image: url('../images/checkmarkNoBorder.png'); 4 } 5 6 .dj_ie6 .tundra .dijitToggleButton .dijitRadio, 7 .dj_ie6 .tundra .dijitToggleButton .dijitRadioIcon { 3 8 background-image: url('../images/checkmarkNoBorder.gif'); 4 9 } … … 6 11 .tundra .dijitRadio, 7 12 .tundra .dijitRadioIcon { /* inside a toggle button */ 8 background-image: url('../images/checkmark. gif'); /* checkbox sprite image */13 background-image: url('../images/checkmark.png'); /* checkbox sprite image */ 9 14 background-repeat: no-repeat; 10 15 width: 16px; … … 12 17 margin: 0; 13 18 padding: 0; 19 } 20 21 .dj_ie6 .tundra .dijitRadio, 22 .dj_ie6 .tundra .dijitRadioIcon { /* inside a toggle button */ 23 background-image: url('../images/checkmark.gif'); /* checkbox sprite image */ 14 24 } 15 25