Windows 10 will reach EOS (end of support) on October 14, 2025. For more information, see this article.

Search Support

Avoid support scams. We will never ask you to call or text a phone number or share personal information. Please report suspicious activity using the “Report Abuse” option.

Learn More

Supernova - Missing the every other email highlight color

  • 2 replies
  • 2 have this problem
  • 4 views
  • Last reply by tony263

more options

One thing I really don't like in the new version is it's missing the grey highlight that would be every other email. Like in excel tables rows view etc. so it makes it easier on the eyes to go down your email list.

Is there a way to turn that back on?

Please thelp

One thing I really don't like in the new version is it's missing the grey highlight that would be every other email. Like in excel tables rows view etc. so it makes it easier on the eyes to go down your email list. Is there a way to turn that back on? Please thelp

All Replies (2)

more options

This is known as zebra striping, and there are many such topics on this forum.

The css code is the following:

/* zebra striping */
#threadTree tr:nth-child(2n) {
  background-image: linear-gradient(rgba(0,0,0,.10), rgba(0,0,0,.10)) !important;  
}

#folderTree li[is="folder-tree-row"]:nth-child(2n) > div.container {
  background-image: linear-gradient(rgba(0,0,0,.08), rgba(0,0,0,.08)) !important;
}


Help/Troubleshooting Info, Profile Folder, Show in Finder, close TB, create a new folder named chrome, create a new document in chrome with a text editor, name it userChrome.css, Save as type: All files *.*, copy in the above code, change the colors as desired. Double-click toolkit.legacyUserProfileCustomizations.stylesheets to true in Settings/General/Config. editor, restart TB.

Online css generator

Omit the folderTree code if you only want zebra on the Threads Pane.

more options

Thank you so much! That's awesome. To bad it isn't just a feature you can turn on and off.

Appreciate it.