In Firefox 3.0.6 the background colors of the selected active tab and the un-selected inactive tabs are very similar. The color of the selected tabs cannot stand-out to catch your eyes. Here is a way to change the colors.
Firstly, go to the chrome directory of your profile in Firefox 3.0.6. Create or edit the file userChrome.css and add the following lines :
Then, re-start the firefox.
tab
{
-moz-appearance: none !important;
}
tab[selected="true"]
{
background-color: #FF6A6A !important;
color: blue !important;
}
tab:not([selected="true"])
{
background-color: #CCFFFF !important;
color: black !important;
} |
This will make the active tab have red background with blue text and the inactive tabs have light cyan background with black text.
No comments:
Post a Comment