1
0
Fork 0
mirror of https://github.com/FrankerFaceZ/FrankerFaceZ.git synced 2025-07-30 06:28:31 +00:00
FrankerFaceZ/styles/widgets/check-box.scss
SirStendec a1949b0f8e 4.12.1
* Added: Preview of new theming system with custom colors.
* Changed: Start using the CSS color variables in more places.
* Fixed: Alignment of metadata in theater mode.
* Fixed: Custom chat font not applying to chat input.
* Fixed: Do not attempt to fetch uptime when there is no channel ID.
* Fixed: Hover state of emote menu section buttons.
* Fixed: Re-add pill rendering for FFZ menu button.
2019-09-26 20:34:37 -04:00

23 lines
No EOL
398 B
SCSS

.tw-checkbox__input {
&:indeterminate + .tw-checkbox__label {
&:before {
background: var(--color-twitch-purple-8);
border: 1px solid var(--color-twitch-purple-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;
}
}
}