You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
92 lines
1.6 KiB
SCSS
92 lines
1.6 KiB
SCSS
4 years ago
|
@import "../css/variables.module";
|
||
|
|
||
|
.excalidraw {
|
||
|
.Checkbox {
|
||
4 years ago
|
margin: 4px 0.3em;
|
||
4 years ago
|
display: flex;
|
||
|
align-items: center;
|
||
|
|
||
|
cursor: pointer;
|
||
|
user-select: none;
|
||
|
|
||
4 years ago
|
-webkit-tap-highlight-color: transparent;
|
||
|
|
||
|
&:hover:not(.is-checked) .Checkbox-box:not(:focus) {
|
||
4 years ago
|
box-shadow: 0 0 0 2px #{$oc-blue-4};
|
||
4 years ago
|
}
|
||
4 years ago
|
|
||
4 years ago
|
&:hover:not(.is-checked) .Checkbox-box:not(:focus) {
|
||
4 years ago
|
svg {
|
||
|
display: block;
|
||
|
opacity: 0.3;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
&:active {
|
||
|
.Checkbox-box {
|
||
|
box-shadow: 0 0 2px 1px inset #{$oc-blue-7} !important;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
&:hover {
|
||
|
.Checkbox-box {
|
||
|
background-color: fade-out($oc-blue-1, 0.8);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
&.is-checked {
|
||
|
.Checkbox-box {
|
||
|
background-color: #{$oc-blue-1};
|
||
|
svg {
|
||
|
display: block;
|
||
|
}
|
||
|
}
|
||
|
&:hover .Checkbox-box {
|
||
|
background-color: #{$oc-blue-2};
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.Checkbox-box {
|
||
|
width: 22px;
|
||
|
height: 22px;
|
||
|
padding: 0;
|
||
|
flex: 0 0 auto;
|
||
|
|
||
|
margin: 0 1em;
|
||
|
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
justify-content: center;
|
||
|
|
||
|
box-shadow: 0 0 0 2px #{$oc-blue-7};
|
||
|
background-color: transparent;
|
||
|
border-radius: 4px;
|
||
|
|
||
|
color: #{$oc-blue-7};
|
||
|
|
||
2 years ago
|
border: 0;
|
||
|
|
||
4 years ago
|
&:focus {
|
||
|
box-shadow: 0 0 0 3px #{$oc-blue-7};
|
||
|
}
|
||
|
|
||
|
svg {
|
||
|
display: none;
|
||
|
width: 16px;
|
||
|
height: 16px;
|
||
|
stroke-width: 3px;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.Checkbox-label {
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
}
|
||
|
|
||
4 years ago
|
.excalidraw-tooltip-icon {
|
||
4 years ago
|
width: 1em;
|
||
|
height: 1em;
|
||
|
}
|
||
|
}
|
||
|
}
|