mirror of
https://codeberg.org/claui/mobile-config-firefox.git
synced 2024-11-09 19:30:15 +00:00
74d5d67e71
This pseudo-class won't be supported in Firefox 100, and we can just use :root[lwthemetextcolor="bright"] instead.
13 lines
No EOL
621 B
CSS
13 lines
No EOL
621 B
CSS
/* Source file https://github.com/MrOtherGuy/firefox-csshacks/tree/master/chrome/dark_theme_aware_statuspanel.css made available under Mozilla Public License v. 2.0
|
|
See the above repository for updates as well as full license text. */
|
|
|
|
/*
|
|
Makes statuspanel aware of the the theme text color
|
|
Meaning, if theme text is light then the statuspanel uses dark background and light text. On themes with dark text the statuspanel has normal appearance.
|
|
*/
|
|
|
|
:root[lwthemetextcolor="bright"] #statuspanel-label{
|
|
background-color: rgb(50,50,52) !important;
|
|
color: rgb(187,187,189) !important;
|
|
border-color: grey !important;
|
|
} |