Is there a way to change the color of the white status bar?

User Help for Mozilla Firefox
Post Reply
Exoteeth
Posts: 55
Joined: August 5th, 2018, 1:40 am

Is there a way to change the color of the white status bar?

Post by Exoteeth »

Oddly, when I do a search all I get are posts saying that there is no status bar anymore. Well, in 61.0.1 I have a floating status bar at the very bottom-left of the screen. It disappears with no activity.

Anyway, I'm running a black theme (userChrome.css) and I'm wondering if the status bar can be changed?

Thanks!
User avatar
DanRaisch
Moderator
Posts: 127225
Joined: September 23rd, 2004, 8:57 pm
Location: Somewhere on the right coast

Re: Is there a way to change the color of the white status b

Post by DanRaisch »

Moving to Firefox Support.
Brummelchen
Posts: 4480
Joined: March 19th, 2005, 10:51 am

Re: Is there a way to change the color of the white status b

Post by Brummelchen »

ell, in 61.0.1 I have a floating status bar at the very bottom-left of the screen. It disappears with no activity.
if you speak about the link preview at mouse over link, that should only appear in this case. search for the code in your userchrome. if you have found it then change font-color: #fff !important; and background-color: #000 !important; (white text on black)
User avatar
smsmith
Moderator
Posts: 19979
Joined: December 7th, 2004, 8:51 pm
Location: Indiana

Re: Is there a way to change the color of the white status b

Post by smsmith »

You can also use this add-on to change the color of the tooltip and have it popup where the link is, rather than in the lower left corner.
https://addons.mozilla.org/en-US/firefo ... ooltip-we/
Give a man a fish, and he eats for a day. Teach a man to fish, and he eats for a lifetime.
I like poetry, long walks on the beach and poking dead things with a stick.
Please do not PM me for personal support. Keep posts here in the Forums instead and we all learn.
morat
Posts: 6421
Joined: February 3rd, 2009, 6:29 pm

Re: Is there a way to change the color of the white status b

Post by morat »

Try this:

Code: Select all

/* Firefox userChrome.css */

@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");

#statuspanel-label {
  -moz-appearance: none !important;
  background-color: orange !important;
  color: white !important;
}
http://kb.mozillazine.org/UserChrome.css
Exoteeth
Posts: 55
Joined: August 5th, 2018, 1:40 am

Re: Is there a way to change the color of the white status b

Post by Exoteeth »

Thanks very much, the above code worked.
Post Reply