2016-03-11 00:48:53 +00:00
|
|
|
.radiobox {
|
|
|
|
padding-left: 22px;
|
|
|
|
margin-bottom: 0;
|
|
|
|
.font-size-normal();
|
|
|
|
font-weight: normal;
|
2019-12-03 15:44:40 +00:00
|
|
|
position: relative;
|
2019-12-10 20:58:38 +00:00
|
|
|
min-height: 1em;
|
2016-03-11 00:48:53 +00:00
|
|
|
|
2019-12-10 20:58:38 +00:00
|
|
|
input[type=radio] {
|
2016-03-11 00:48:53 +00:00
|
|
|
|
2019-12-10 20:58:38 +00:00
|
|
|
display: none;
|
2019-12-03 15:44:40 +00:00
|
|
|
|
2019-12-10 20:58:38 +00:00
|
|
|
+ label {
|
|
|
|
position: absolute;
|
|
|
|
left: 0;
|
|
|
|
margin-top: auto;
|
|
|
|
padding-bottom: 4px;
|
|
|
|
width: 14px;
|
|
|
|
height: 14px;
|
|
|
|
|
2021-02-16 07:21:22 +00:00
|
|
|
background: @background-normal-ie;
|
2020-12-19 19:43:19 +00:00
|
|
|
background: @background-normal;
|
2021-02-16 07:21:22 +00:00
|
|
|
border: @scaled-one-px-value-ie solid @border-regular-control-ie;
|
2021-02-10 12:40:30 +00:00
|
|
|
border: @scaled-one-px-value solid @border-regular-control;
|
2019-12-10 20:58:38 +00:00
|
|
|
border-radius: 50%;
|
2021-04-14 08:01:41 +00:00
|
|
|
|
|
|
|
+ span {
|
|
|
|
outline: @scaled-one-px-value-ie dotted transparent;
|
|
|
|
outline: @scaled-one-px-value dotted transparent;
|
|
|
|
display: inline-block;
|
|
|
|
}
|
2019-12-10 20:58:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
&:checked {
|
|
|
|
+ label {
|
2019-12-03 15:44:40 +00:00
|
|
|
&::before {
|
|
|
|
content: '';
|
|
|
|
position: absolute;
|
2021-02-16 07:21:22 +00:00
|
|
|
background: @text-normal-ie;
|
2020-12-19 19:43:19 +00:00
|
|
|
background: @text-normal;
|
2019-12-03 15:44:40 +00:00
|
|
|
border-radius: 50%;
|
|
|
|
width: 8px;
|
|
|
|
height: 8px;
|
2019-12-10 20:58:38 +00:00
|
|
|
left: 2px;
|
|
|
|
top: 2px;
|
2019-12-03 15:44:40 +00:00
|
|
|
}
|
|
|
|
}
|
2016-03-11 00:48:53 +00:00
|
|
|
}
|
|
|
|
|
2019-12-10 20:58:38 +00:00
|
|
|
&.disabled, &:disabled {
|
2016-03-11 00:48:53 +00:00
|
|
|
|
2019-12-10 20:58:38 +00:00
|
|
|
+ label {
|
2019-12-03 15:44:40 +00:00
|
|
|
&::before {
|
|
|
|
}
|
2016-03-11 00:48:53 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-04-14 08:01:41 +00:00
|
|
|
|
|
|
|
&:focus:not(.disabled) {
|
|
|
|
input[type=radio] {
|
|
|
|
+ label {
|
|
|
|
border-color: @border-control-focus-ie;
|
|
|
|
border-color: @border-control-focus;
|
|
|
|
|
|
|
|
+ span {
|
|
|
|
outline-color: @border-control-focus-ie;
|
|
|
|
outline-color: @border-control-focus;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-03-11 00:48:53 +00:00
|
|
|
}
|