On 01/18/02 12:08 PM, Duane Clark wrote:
> In the news reader, old threads with new messages are now displayed with
> an underline. Is this a bug or a "feature"? If a "feature", can those
> underlines be turned off? The old way of distinguishing them with normal
> and bold text was much better, IMO.
>
> Mozilla/5.0 (X11; U; Linux i686; en-US; rv:0.9.7+) Gecko/20020118
>
Yes. This got introduced when a couple of bugs regarding the outliner
got fixed recently. In fact this is a feature that was always there in
the CSS code of Mozilla. The only reason it never got displayed was
because the outliner could not display underlines. threadPane.css has
the following code.
/* on a collapsed thread, if the top level message is read, but the
thread has
* unread children, underline the text. 4.x mac did this, very slick
*/
outlinerchildren:-moz-outliner-cell-text(container, closed, hasUnread,
read) {
text-decoration: underline;
}
To revert back to previous behaviour, adding the following to your
userChrome.css should work
outlinerchildren:-moz-outliner-cell-text(container, closed, hasUnread,
read) {
text-decoration: none !important;
}
Pratik.