[help] Tab Font Colour?


Recommended Posts

Is it possible to make the inactive and active tabs haven't different font colours?? I want the inactive tab font to stand out less than the active tab. Anyone know if or how this can be done??

thanks.

Link to comment
Share on other sites

This can be done with userChrome.css:

/* Default tab text color */
tab .tab-text {
  color: gray !important;
}

/* Selected tab text color */
tab[selected="true"] .tab-text {
  color: black !important;
}

If you wanted to change the text color when hovering over a non-selected tab:

/* hover tab text styles */
tab:not([selected="true"]):hover .tab-text {
  color: red !important;
}

You can use any valid CSS color value or other properties such as font-style, font-family, opacity, etc.'

Edit: For those that have Tab Mix Plus, I believe text colors can be set in the TMP options.

Edited by Grist
Link to comment
Share on other sites

This topic is now closed to further replies.
  • Recently Browsing   0 members

    • No registered users viewing this page.