You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
698 B
33 lines
698 B
@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); |
|
} |
|
}
|
|
|