Unread threads not showing as bold in Firefox

Anon1

Silver Member
Points
0
Would it be possible to get a slight CSS tweak applied to improve the user experience in Firefox?

Thread titles that are already read have "font-weight: 400" on them, and unread threads get "font-weight: 500". Both display the same in Firefox, so it's hard to see what's read and what's unread. If you could bump it up to "font-weight: 600" that'd be great.

The specific CSS rule to tweak is:

CSS:
.is-unread .structItem-title {
    font-weight: 500;
}
 
Top