1
0
Fork 0
mirror of https://github.com/FrankerFaceZ/FrankerFaceZ.git synced 2025-08-03 16:38:31 +00:00
* Added: Option to use the older, lighter input elements when using a dark theme. (Effectively reverts the recent Twitch change.)
* Fixed: Issue with the settings bridge failing to load when using a profile with a Current Monitor rule.
* Fixed: A few minor colors being applied incorrectly when using theme options.
* Fixed: No background being present behind certain elements, including most notably up-time in the directory.
This commit is contained in:
SirStendec 2023-04-27 17:30:58 -04:00
parent e6ad12c937
commit 67c64e6f7e
9 changed files with 45 additions and 16 deletions

View file

@ -119,7 +119,7 @@
position: absolute;
z-index: 1;
background-color: var(--color-background-overlay);
background-color: var(--color-background-overlay-alt);
color: var(--color-text-overlay);
padding: 0 0.5rem;

View file

@ -1550,7 +1550,7 @@
.tw-c-background-overlay {
background-color: rgba(0,0,0,.6)!important;
background-color: var(--color-background-overlay)!important
background-color: var(--color-background-overlay-alt)!important
}
.tw-c-background-range {

View file

@ -101,7 +101,7 @@ textarea.ffz-input {
&--alert { background-color: var(--color-fill-alert) }
&--success { background-color: var(--color-fill-success) }
&--overlay {
background-color: var(--color-background-overlay);
background-color: var(--color-background-overlay-alt);
box-shadow: 0 0 0 1px var(--color-border-overlay);
}