csd: Fix close button bg color on Firefox themes

Fixes #583
This commit is contained in:
Rafael Mardojai CM 2023-04-11 19:06:25 -05:00
parent bffd15ac21
commit e1169124fd
No known key found for this signature in database
GPG Key ID: 2B2DAB2A58566C84
2 changed files with 3 additions and 5 deletions

View File

@ -152,8 +152,6 @@ You should already have this file installed if you followed one of the installat
> For other non essential preferences checkout `configuration/user.js`.
Also though is not obligatory, some weird issues might happen if you don't use the Firefox's default/system theme because the theme is never tested against the Firefox's light or dark theme.
## Updating
You can follow the installation script steps again to update the theme.

View File

@ -151,15 +151,15 @@
}
:root[tabsintitlebar] #titlebar:-moz-window-inactive .titlebar-button,
:root[tabsintitlebar][inFullscreen] #window-controls:-moz-window-inactive toolbarbutton {
background: var(--gnome-inactive-tabbar-tab-active-background);
background: var(--gnome-inactive-tabbar-tab-active-background) !important;
}
:root[tabsintitlebar] #titlebar:not(:-moz-window-inactive) .titlebar-button:not([disabled]):hover,
:root[tabsintitlebar][inFullscreen] #window-controls:not(:-moz-window-inactive) toolbarbutton:not([disabled]):hover {
background: var(--gnome-button-hover-background);
background: var(--gnome-button-hover-background) !important;
}
:root[tabsintitlebar] #titlebar:not(:-moz-window-inactive) .titlebar-button:not([disabled]):active,
:root[tabsintitlebar][inFullscreen] #window-controls:not(:-moz-window-inactive) toolbarbutton:not([disabled]):active {
background: var(--gnome-button-active-close-background);
background: var(--gnome-button-active-close-background) !important;
}
:root[tabsintitlebar] #titlebar .titlebar-button:where(:hover):not(:hover) {