web-apps/apps/common/main/resources/less/radiobox.less
Maxim Kadushkin 741b10515d webapps added
2016-03-10 21:48:53 -03:00

31 lines
807 B
Plaintext

.radiobox {
padding-left: 22px;
margin-bottom: 0;
.font-size-normal();
font-weight: normal;
input[type=button] {
background-position: @radio-offset-x @radio-offset-y;
background-color: transparent;
border: none;
margin-left: -22px;
margin-right: 6px;
padding-bottom: 4px;
width: 16px;
height: 16px;
cursor: default;
vertical-align: top;
&.checked {
background-position: @radio-offset-x @radio-offset-y - 16px;
}
&.disabled {
background-position: @radio-offset-x - 48px @radio-offset-y;
&.checked {
background-position: @radio-offset-x - 48px @radio-offset-y - 16px;
}
}
}
}