mirror of
https://github.com/FrankerFaceZ/FrankerFaceZ.git
synced 2025-08-03 16:38:31 +00:00
* 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.
23 lines
No EOL
392 B
SCSS
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;
|
|
}
|
|
}
|
|
} |