mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
86 lines
1.5 KiB
SCSS
86 lines
1.5 KiB
SCSS
|
|
.Checkbox {
|
|
--checkbox-color: #{$textColorPrimary}; // tick color [√]
|
|
--checkbox-color-active: #{$contentColor};
|
|
--checkbox-bgc-active: #{$lensBlue};
|
|
|
|
flex-shrink: 0;
|
|
|
|
&.theme {
|
|
&-dark {
|
|
// default
|
|
}
|
|
&-light {
|
|
--checkbox-color-active: #{$lensBlue};
|
|
--checkbox-bgc-active: none;
|
|
}
|
|
}
|
|
|
|
&:hover {
|
|
input:not(:checked):not(:disabled) {
|
|
~ .tick:after {
|
|
opacity: 1;
|
|
}
|
|
}
|
|
}
|
|
|
|
input[type="checkbox"] {
|
|
display: none;
|
|
&:checked {
|
|
~ .box {
|
|
color: var(--checkbox-color-active);
|
|
background: var(--checkbox-bgc-active);
|
|
border-color: var(--checkbox-bgc-active);
|
|
&:after {
|
|
opacity: 1;
|
|
}
|
|
}
|
|
}
|
|
&:disabled {
|
|
~ .box {
|
|
color: var(--checkbox-color);
|
|
}
|
|
~ * {
|
|
opacity: .5;
|
|
pointer-events: none;
|
|
}
|
|
}
|
|
&:not(:disabled) ~ * {
|
|
cursor: pointer;
|
|
}
|
|
}
|
|
|
|
.label {
|
|
margin-right: $margin;
|
|
}
|
|
|
|
> .box {
|
|
$boxSize: round(1.7 * $unit);
|
|
|
|
position: relative;
|
|
width: $boxSize;
|
|
height: $boxSize;
|
|
border-radius: 2px;
|
|
color: var(--checkbox-color);
|
|
border: 2px solid currentColor;
|
|
flex-shrink: 0;
|
|
|
|
&:after {
|
|
content: "";
|
|
position: absolute;
|
|
left: 0;
|
|
top: 0;
|
|
width: 100%;
|
|
height: 60%;
|
|
border: 2px solid currentColor;
|
|
border-top: 0;
|
|
border-right: 0;
|
|
transform: rotate(-45deg);
|
|
opacity: 0;
|
|
}
|
|
|
|
+ * {
|
|
margin-left: .5em;
|
|
}
|
|
}
|
|
} |