2019-10-01 09:15:15 +00:00
|
|
|
@import "variables";
|
|
|
|
|
2019-10-28 16:31:33 +00:00
|
|
|
.vn-radio {
|
2019-10-04 10:33:16 +00:00
|
|
|
& > .btn {
|
2019-10-01 09:15:15 +00:00
|
|
|
border-radius: 50%;
|
|
|
|
|
|
|
|
& > .mark {
|
|
|
|
transition: background 250ms;
|
|
|
|
}
|
|
|
|
}
|
2019-10-04 10:33:16 +00:00
|
|
|
&.checked > .btn {
|
2019-11-10 10:08:44 +00:00
|
|
|
border-color: $color-button;
|
2019-10-01 09:15:15 +00:00
|
|
|
|
|
|
|
& > .mark {
|
|
|
|
position: absolute;
|
|
|
|
border-radius: 50%;
|
|
|
|
top: 50%;
|
|
|
|
left: 50%;
|
|
|
|
transform: translate(-50%, -50%);
|
|
|
|
width: 10px;
|
|
|
|
height: 10px;
|
2019-11-10 10:08:44 +00:00
|
|
|
background-color: $color-button;
|
2019-10-01 09:15:15 +00:00
|
|
|
}
|
|
|
|
}
|
2019-10-28 16:31:33 +00:00
|
|
|
&.disabled.checked > .btn > .mark {
|
|
|
|
background-color: $color-font-secondary;
|
|
|
|
}
|
2019-10-01 09:15:15 +00:00
|
|
|
}
|