spymastermatt / thunderbird-monterail

A set of themes for thunderbird inspired by a Monterail blog post
GNU General Public License v3.0
1.04k stars 77 forks source link

Message Pane Zebra Stipes? #90

Open Sam-Barnes-GitHub opened 6 years ago

Sam-Barnes-GitHub commented 6 years ago

Any way to make the message pane rows have zebra striping?

nevaris commented 6 years ago

Hi @Sam-Barnes-GitHub I tried adding zabra striping by changing the _base.css file. If you want to change the color of the zebra striping in the default theme (in this case to a light green) Adding this lines:

/* add zebra striping */
#threadTree treechildren::-moz-tree-row(odd) {
    -moz-appearance: none !important;
    background-image: none !important;
    background-color:#F2F1F0 !important;
}
#threadTree treechildren::-moz-tree-row(odd, selected) {
    background-color: Highlight !important;
}

You have documentation on this link: Zebra stripping - MozillaZine