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.
82 lines
2.7 KiB
82 lines
2.7 KiB
@import "../variables/colors"; |
|
|
|
.form-checkbox { |
|
position: absolute; |
|
z-index: -1; |
|
opacity: 0; |
|
&+label { |
|
display: inline-flex; |
|
align-items: center; |
|
user-select: none; |
|
&::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: 0.25em; |
|
margin-right: 0.5em; |
|
background-repeat: no-repeat; |
|
background-position: center center; |
|
background-size: 50% 50%; |
|
transition: border 0.3s; |
|
} |
|
} |
|
&: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='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e"); |
|
} |
|
&:disabled+label::before { |
|
/* стили для чекбокса, находящегося в состоянии disabled */ |
|
background-color: map-get($colors-light, 'gray-50'); |
|
} |
|
} |
|
|
|
.dark .form-field { |
|
.form-checkbox { |
|
&+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; |
|
} |
|
} |
|
} |