summaryrefslogtreecommitdiff
path: root/js/dojo/dojox/mobile/themes/common/RadioButton.less
blob: 0874ac818339c79ec9e362e6be182f855e1686d2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/* dojox.mobile.RadioButton */
.mblRadioButton {
	position: relative;
	cursor: pointer;
	outline: none;
	-webkit-appearance: none;
	-webkit-tap-highlight-color: rgba(255,255,255,0);
	.mblRadioButton-styles;
}
.mblRadioButtonChecked,
.mblRadioButton:checked {
	.mblRadioButtonChecked-styles;
	&::after {
		position: absolute;
		.mblRadioButtonChecked-after-styles;
	}
	&.mblRadioButtonSelected {
		.mblRadioButtonChecked-Selected-styles;
		&::after {
			.mblRadioButtonChecked-Selected-after-styles;
		}
	}	
}