Jens Weiermann wrote: > > I'd like to diplay (collapsed) threads with unread messages with a > BOLD font instead of the default underlined. Is there a setting which > will let me adjust this?
Add to your userChrome.css:
/* collapsed threads with unread */
treechildren:-moz-tree-cell-text(container, closed, hasUnread, read) {
text-decoration: none !important;
font-weight: bold !important;
}
