scinote-web/app/assets/stylesheets/shared_styles/elements/checkboxes.scss

64 lines
1.4 KiB
SCSS
Raw Normal View History

2019-12-04 22:17:59 +08:00
// scss-lint:disable SelectorDepth QualifyingElement
2019-12-01 04:24:50 +08:00
:root {
--sci-checkbox-size: 16px;
}
input[type="checkbox"].sci-checkbox {
cursor: pointer;
flex-shrink: 0;
height: var(--sci-checkbox-size);
margin: 0;
opacity: 0;
position: relative;
width: var(--sci-checkbox-size);
z-index: 2;
+ .sci-checkbox-label {
display: inline-block;
flex-shrink: 0;
height: var(--sci-checkbox-size);
margin-left: calc(var(--sci-checkbox-size) * -1);
position: absolute;
2019-12-01 04:24:50 +08:00
width: var(--sci-checkbox-size);
&::before {
@include font-awesome;
2019-12-01 04:24:50 +08:00
animation-timing-function: $timing-function-sharp;
background: $color-white;
border: $border-default;
border-radius: 1px;
color: $color-white;
content: "";
2019-12-04 22:17:59 +08:00
font-size: calc(var(--sci-checkbox-size) - var(--sci-checkbox-size) * .375);
2019-12-01 04:24:50 +08:00
height: var(--sci-checkbox-size);
left: 0;
line-height: calc(var(--sci-checkbox-size) - 2px);
position: absolute;
text-align: center;
top: 1px;
transition: .2s;
width: var(--sci-checkbox-size);
}
}
&.hidden + .sci-checkbox-label {
display: none;
}
&:checked + .sci-checkbox-label {
&::before {
background: $brand-primary;
border: 1px solid $brand-primary;
content: $font-fas-check;
2019-12-01 04:24:50 +08:00
}
}
&:disabled + .sci-checkbox-label {
&::before {
background: $color-alto;
border: $border-tertiary;
}
}
2019-12-04 22:17:59 +08:00
}