Need some help with Firefox :)
a week ago
General
Hey hey, so Firefox Updated yesterday and changed the Baar to be like a Fat Blue one which is super annoying to me.
I've installed https://github.com/black7375/Firefox-UI-Fix
now which works perfectly, BESIDES for the writing being Black on Grey unless the tab is active, then it's white writing on Grey.
From Windows Side i am using a contrast profile, most of my windows are black with white writing.
Any idea how i could change the writing in the inactive tabs to also be portraited in white?
Thanks!
I've installed https://github.com/black7375/Firefox-UI-Fix
now which works perfectly, BESIDES for the writing being Black on Grey unless the tab is active, then it's white writing on Grey.
From Windows Side i am using a contrast profile, most of my windows are black with white writing.
Any idea how i could change the writing in the inactive tabs to also be portraited in white?
Thanks!
FA+

There's this page on Reddit which gives you a quick rundown of where the files are: https://old.reddit.com/r/FirefoxCSS.....efox_with_css.
You'll probably need to indicate that the text needs to be white on an inactive tab. A quick search gave me this page back: https://www.tutorialpedia.org/blog/.....ab-text-color/
If that page is correct you would probably need to add tab:not([selected]) .tab-label { color: white;} to one of the theme CSS files
user_pref("userChrome.theme.system_default", false);
user_pref("userChrome.theme.proton_color", true);
user_pref("userChrome.theme.proton_chrome", true); // Need proton_color
user_pref("userChrome.theme.fully_color", true); // Need proton_color
user_pref("userChrome.theme.fully_dark", true); // Need proton_color
user_pref("userChrome.theme.system_default"
if i turn it to false, it goes back to be blue with black letters, while the active tab is grey with white letters
If i turn it to true, i'm back to black writing on grey background
So that would make the rule:
tab:not([selected]) .tab-label { color: white !important;}
Now i'm just missing the font color in the menu bar
menubar > menu {
color: #FFFFFF !important;
}
I just completely changed the hover options and other stuff just how i like them
Until we're talking about vertical centering before CSS3....