You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
85 lines
2.9 KiB
85 lines
2.9 KiB
2 years ago
|
@import "../variables/colors";
|
||
|
|
||
|
/* для элемента input c type="radio" */
|
||
|
.form-radio {
|
||
|
position: absolute;
|
||
|
z-index: -1;
|
||
|
opacity: 0;
|
||
|
&+label {
|
||
|
/* для элемента label связанного с .custom-radio */
|
||
|
display: inline-flex;
|
||
|
align-items: center;
|
||
|
user-select: none;
|
||
|
&::before {
|
||
|
/* создание в label псевдоэлемента before со следующими стилями */
|
||
|
content: '';
|
||
|
display: inline-block;
|
||
|
width: 1em;
|
||
|
height: 1em;
|
||
|
flex-shrink: 0;
|
||
|
flex-grow: 0;
|
||
|
border: 1px solid map-get($colors-light, 'gray-20');
|
||
|
border-radius: 50%;
|
||
|
margin-right: 0.5em;
|
||
|
background-repeat: no-repeat;
|
||
|
background-position: center center;
|
||
|
background-size: 50% 50%;
|
||
|
}
|
||
|
}
|
||
|
&:not(:disabled) {
|
||
|
&:not(:checked)+label:hover::before {
|
||
|
/* стили при наведении курсора на радио */
|
||
|
border-color: map-get($colors-light, 'blue-0');
|
||
|
}
|
||
|
&:active+label::before {
|
||
|
/* стили для активной радиокнопки (при нажатии на неё) */
|
||
|
background-color: #b3d7ff;
|
||
|
border-color: #b3d7ff;
|
||
|
}
|
||
|
}
|
||
|
&:focus {
|
||
|
&+label::before,
|
||
|
&:not(:checked)+label::before {
|
||
|
/* стили для радиокнопки, находящейся в фокусе и не находящейся в состоянии checked */
|
||
|
box-shadow: 0 0 2px 2px map-get($colors-light, 'blue-50');
|
||
|
}
|
||
|
}
|
||
|
&:checked+label::before {
|
||
|
/* стили для радиокнопки, находящейся в состоянии checked */
|
||
|
$color: map-get($colors-dark, 'blue-60');
|
||
|
border-color: $color;
|
||
|
background-color: $color;
|
||
|
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
|
||
|
}
|
||
|
&:disabled+label::before {
|
||
|
/* стили для радиокнопки, находящейся в состоянии disabled */
|
||
|
background-color: map-get($colors-light, 'gray-50');
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.dark .form-field {
|
||
|
.form-radio {
|
||
|
&+label {
|
||
|
&::before {
|
||
|
border: 1px solid map-get($colors-dark, 'gray-60');
|
||
|
}
|
||
|
}
|
||
|
&:checked+label::before {
|
||
|
$color: map-get($colors-dark, 'blue-60');
|
||
|
border: solid 1px $color;
|
||
|
}
|
||
|
&:focus {
|
||
|
&+label::before,
|
||
|
&:not(:checked)+label::before {
|
||
|
/* стили для радио, находящегося в фокусе и не находящегося в состоянии checked */
|
||
|
$bg-color: mix(map-get($colors-dark, 'gray-0'), map-get($colors-light, 'blue-10'), 75%);
|
||
|
box-shadow: 0 0 2px 2px $bg-color;
|
||
|
}
|
||
|
}
|
||
|
&:disabled+label::before {
|
||
|
/* стили для радио, находящегося в состоянии disabled */
|
||
|
background-color: map-get($colors-dark, 'gray-50');
|
||
|
border: 0;
|
||
|
}
|
||
|
}
|
||
|
}
|