cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
Funkybeat
New member
Status: New idea

I often have multiple tabs open with emails from clients. I think it would be a cool idea to add some features to organize the lack of readability in the tabs, such as assigning a color to an open tab or assigning a color to a particular customer or group of emails. Great example for this is FreeCommander.

2 Comments
Status changed to: New idea
Jon
Community Manager
Community Manager

Thanks for submitting an idea to the Mozilla Connect community! Your idea is now open to votes (aka kudos) and comments.

Agentvirtuel
Contributor

Hello

Maybe? try it if you like

About color to a particular customer
Take a look Lawdie123's suggestion https://www.reddit.com/r/Thunderbird/comments/17unvb1/different_account_colors_in_thunderbird_115

About color to an open tab
Inspired by https://support.mozilla.org/en-US/questions/1425743
And https://www.w3schools.com/colors
userChrome.css and illustrative colors

/* Tabmail Tab */

/*Remove the theme override */
.tabmail-tab .tab-background[selected=true]:-moz-lwtheme {
  background-image: none !important;
}
/*Change selected tab colour to match title bar - seafoam teal is #33cc33 */
.tab-background[selected=true] {
  background-color:  #33cc33 !important; 
 background-repeat: repeat-x;
}
/*Change colour of the blue top line on selected tab - */
.tab-line[selected=true] {
  background-color: #cccc33 !important; 
}
/*not selected tab same as menu bar colour #cc3333*/
.tab-background:not([selected=true]) {
  background-color: #cc3333 !important; 
}
/* hover on none selected tab force line to seafoam teal #cc3333 */
.tabmail-tab:hover .tab-line:not([selected=true]) {
  background-color: #cc3333 !important; 
}

1.png