DocumentServer/OfficeWeb/apps/common/main/resources/less/radiobox.less
2015-04-28 17:59:00 +03:00

33 lines
970 B
Plaintext

.radiobox {
padding-left: 22px;
margin-bottom: 0;
.font-size-normal();
font-weight: normal;
input[type=button] {
.background-ximage('@{common-image-path}/@{common-controls}', '@{common-image-path}/@{common-controls2x}', 100px);
background-repeat: no-repeat;
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;
}
}
}
}