1
0
Fork 0
mirror of https://github.com/FrankerFaceZ/FrankerFaceZ.git synced 2025-08-03 16:38:31 +00:00
FrankerFaceZ/styles/widgets/check-box.scss
SirStendec 0d61922164 4.20.35
* Changed: Remove the `Override Channel Points Rendering` experiment. Now enabled for all users.
* Fixed: Update the theme generation rules when using accent colors.
* Fixed: Swap Sidebars and Hide Side Navigation when experiencing the experiment that expands the side navigation bar on hover.
* API Changed: Allow `overlay` rich tokens to have a background color.
2020-08-21 15:59:13 -04:00

23 lines
No EOL
392 B
SCSS

.tw-checkbox__input {
&:indeterminate + .tw-checkbox__label {
&:before {
background: var(--ffz-color-accent-8);
border: 1px solid var(--ffz-color-accent-8);
}
&:after {
content: '';
display: block;
position: absolute;
top: 50%;
left: .4rem;
height: 0;
width: .8rem;
margin-top: -.1rem;
border-bottom: 2px solid #fff;
border-radius: 1rem;
}
}
}