On 05/01/12 06:13, Mark wrote:
> Is there a way of changing Thunderbird so that unread messages are
> shown in a different color, rather than being shown in bold?
Oh, and to give you a real answer - edit userChrome.css and add this as a starting point:
treechildren::-moz-tree-cell-text(unread) {
font-weight: normal;
color: #fff !important;
background-color: rgb(239,197,202);
background-image: -moz-linear-gradient(top, rgba(239,197,202,1) 0%,
rgba(210,75,90,1) 31%, rgba(186,39,55,1) 39%, rgba(241,142,153,1) 100%);
}
or minimally instead of the 4 rules, just use
color: #fff !important;
that'll do.
hth
Axel