web-apps/apps/common/main/resources/less/radiobox.less

46 lines
1 KiB
Plaintext
Raw Normal View History

2016-03-11 00:48:53 +00:00
.radiobox {
padding-left: 22px;
margin-bottom: 0;
.font-size-normal();
font-weight: normal;
position: relative;
2016-03-11 00:48:53 +00:00
input[type=button] {
margin-left: -22px;
margin-right: 6px;
padding-bottom: 4px;
width: 14px;
height: 14px;
2016-03-11 00:48:53 +00:00
cursor: default;
vertical-align: top;
background: #fff;
border: 1px solid @gray;
border-radius: 50%;
2016-03-11 00:48:53 +00:00
&.checked {
+ span {
&::before {
content: '';
position: absolute;
background: @gray-deep;
border-radius: 50%;
width: 8px;
height: 8px;
left: 3px;
top: 3px;
}
}
2016-03-11 00:48:53 +00:00
}
&.disabled {
opacity: .4;
2016-03-11 00:48:53 +00:00
+ span {
&::before {
opacity: .4;
}
2016-03-11 00:48:53 +00:00
}
}
}
}