Change color of inactive tab

User Help for Mozilla Firefox
Post Reply
josegotme
Posts: 407
Joined: December 23rd, 2008, 11:43 am

Change color of inactive tab

Post by josegotme »

Any css scripts for changing colors of inactive Tabs?
morat
Posts: 6425
Joined: February 3rd, 2009, 6:29 pm

Re: Change color of inactive tab

Post by morat »

Try this:

Code: Select all

/* Firefox userChrome.css */

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

.tabbrowser-tab:not([selected]) {
  background-color: orange !important;
}
http://kb.mozillazine.org/UserChrome.css
Wiggam72
Posts: 451
Joined: July 30th, 2013, 9:05 am

Re: Change color of inactive tab

Post by Wiggam72 »

Thanks. It helped me too. I would like to also change the text color of this tab. I tried by applying some of what I have for the active tab, but it didn't work. I'll start a new thread.
Post Reply