1
0
Fork 0
mirror of https://github.com/FrankerFaceZ/FrankerFaceZ.git synced 2025-09-17 18:26:57 +00:00
* 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.
This commit is contained in:
SirStendec 2019-09-26 20:34:37 -04:00
parent 2232934309
commit a1949b0f8e
21 changed files with 451 additions and 266 deletions

View file

@ -80,8 +80,8 @@ body {
z-index: 999999999;
margin: 6px;
border-radius: 2px;
background: #0e0c13;
color: #fff;
background: var(--color-background-tooltip);
color: var(--color-text-tooltip);
font-size: 1.2rem;
line-height: 1;
text-align: left;
@ -96,7 +96,7 @@ body {
transform: rotate(45deg);
z-index: -1;
background: #0e0c13;
background: var(--color-background-tooltip);
}
&[x-placement^="bottom"] {
@ -126,16 +126,6 @@ body {
border-radius: 0 0 0 2px;
}
}
.tw-root--theme-dark & {
background: #fff;
color: #0e0c13;
.ffz__tooltip--arrow {
background: #fff;
}
}
}