teal focused color is back on URL and search bar CSS code

User Help for Mozilla Firefox
Post Reply
jetspeedz
Posts: 200
Joined: January 4th, 2013, 12:11 am

teal focused color is back on URL and search bar CSS code

Post by jetspeedz »

It looks like with the latest update mozilla again broke this working feature to remove any focused color on the URL and search bar.

Tired of this cat and mouse game.

This used to work prior 93 and now it no longer works.

Code: Select all

/This is the URL bar & Google bar border color, this permanently sets it to dark gray so teal color is gone*/
#urlbar-background{ border-color: #282828 !important; }
#searchbar{ border-color: #282828 !important; box-shadow: unset !important; }
I figured it out, not happy again but this is the fix for anyone who cares.

Code: Select all

#urlbar-background{ border-color: #282828 !important; outline: unset !important; }
#searchbar{ border-color: #282828 !important; box-shadow: unset !important; outline: unset !important; }
Post Reply