2011-11-08 17:40:44 +01:00
|
|
|
/*
|
|
|
|
* CheckBox and Radio Widgets,
|
|
|
|
* and the CSS to embed a checkbox or radio icon inside a ToggleButton.
|
|
|
|
*
|
|
|
|
* Order of images in the default sprite (from L to R, checkbox and radio in same image):
|
|
|
|
* checkbox normal - checked
|
|
|
|
* - unchecked
|
|
|
|
* disabled - checked
|
|
|
|
* - unchecked
|
|
|
|
* hover - checked
|
|
|
|
* - unchecked
|
|
|
|
*
|
|
|
|
* radio normal - checked
|
|
|
|
* - unchecked
|
|
|
|
* disabled - checked
|
|
|
|
* - unchecked
|
|
|
|
* hover - checked
|
|
|
|
* - unchecked
|
|
|
|
*/
|
2010-11-15 08:39:52 +01:00
|
|
|
|
|
|
|
.soria .dijitToggleButton .dijitRadio,
|
|
|
|
.soria .dijitToggleButton .dijitRadioIcon {
|
|
|
|
background-image: url('../images/spriteRadio.gif');
|
|
|
|
}
|
2011-11-08 17:40:44 +01:00
|
|
|
|
2010-11-15 08:39:52 +01:00
|
|
|
.soria .dijitRadio,
|
2011-11-08 17:40:44 +01:00
|
|
|
.soria .dijitRadioIcon { /* inside a toggle button */
|
|
|
|
background-image: url('../images/spriteRadio.gif'); /* checkbox sprite image */
|
2010-11-15 08:39:52 +01:00
|
|
|
background-repeat: no-repeat;
|
|
|
|
width: 16px;
|
|
|
|
height: 16px;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|
2011-11-08 17:40:44 +01:00
|
|
|
|
2010-11-15 08:39:52 +01:00
|
|
|
.soria .dijitRadio,
|
|
|
|
.soria .dijitToggleButton .dijitRadioIcon {
|
2011-11-08 17:40:44 +01:00
|
|
|
/* unselected */
|
2010-11-15 08:39:52 +01:00
|
|
|
background-position: -16px;
|
|
|
|
}
|
2011-11-08 17:40:44 +01:00
|
|
|
|
2010-11-15 08:39:52 +01:00
|
|
|
.soria .dijitRadioChecked,
|
|
|
|
.soria .dijitToggleButtonChecked .dijitRadioIcon {
|
2011-11-08 17:40:44 +01:00
|
|
|
/* selected */
|
|
|
|
background-position: 0;
|
2010-11-15 08:39:52 +01:00
|
|
|
}
|
2011-11-08 17:40:44 +01:00
|
|
|
|
2010-11-15 08:39:52 +01:00
|
|
|
.soria .dijitRadioDisabled {
|
2011-11-08 17:40:44 +01:00
|
|
|
/* unselected and disabled */
|
2010-11-15 08:39:52 +01:00
|
|
|
background-position: -48px;
|
|
|
|
}
|
2011-11-08 17:40:44 +01:00
|
|
|
|
2010-11-15 08:39:52 +01:00
|
|
|
.soria .dijitRadioCheckedDisabled {
|
2011-11-08 17:40:44 +01:00
|
|
|
/* selected but disabled */
|
2010-11-15 08:39:52 +01:00
|
|
|
background-position: -32px;
|
|
|
|
}
|
2011-11-08 17:40:44 +01:00
|
|
|
|
2010-11-15 08:39:52 +01:00
|
|
|
.soria .dijitRadioHover {
|
2011-11-08 17:40:44 +01:00
|
|
|
/* hovering over an unselected enabled radio button */
|
2010-11-15 08:39:52 +01:00
|
|
|
background-position: -80px;
|
|
|
|
}
|
2011-11-08 17:40:44 +01:00
|
|
|
|
2010-11-15 08:39:52 +01:00
|
|
|
.soria .dijitRadioCheckedHover {
|
2011-11-08 17:40:44 +01:00
|
|
|
/* hovering over a selected enabled radio button */
|
2010-11-15 08:39:52 +01:00
|
|
|
background-position: -64px;
|
2011-11-08 17:40:44 +01:00
|
|
|
}
|