dojox
Version:
Dojo eXtensions, a rollup of many useful sub-projects and varying states of maturity – from very stable and robust, to alpha and experimental. See individual projects contain README files for details.
34 lines (28 loc) • 698 B
text/less
@import "variables.less";
@import "../common/RadioButton.less";
.mblRadioButton + .mblCheckableInputDecorator {
&:before {
.mblCheckRadioBorder(15px);
}
}
.mblRadioButton:not([disabled]) {
&:active + .mblCheckableInputDecorator:before,
& + .mblCheckableInputDecorator:active:before {
background-color: @win-accent-color;
}
}
.mblRadioButtonChecked + .mblCheckableInputDecorator {
&:before {
.mblImage(@imgRadioBtnUrl, 13px 13px);
}
}
.mblRadioButton[disabled] {
& + .mblCheckableInputDecorator {
&:before {
border-color: @win-disabled-color;
}
}
&.mblRadioButtonChecked + .mblCheckableInputDecorator:before {
.mblImage("images/radiobtn-disabled.png", 13px 13px);
}
}