I would like to bump this post since I do have the same issues. I even installed stylish firefox extension and wrote custom script that fixes this 2 issues. The problem is that I very often read forum from my phone and I don't have anything like stylish there.
It would be great if admin could add two CSS rules to the style:
1. To mark forums without unread posts, something like:
Code: Select all
dt[title="No unread posts"] a.forumtitle {font-weight: normal;}
2. To make hyperlinks in posts more visible, something like:
Code: Select all
a.postlink {text-decoration: underline;}
or slightly change the colour.
2nd issue is quite important for all users using touchscreen since there is no way to hover links and I often have to click everywhere in the post to check where's the link mentioned in the text.
If anybody is interested, here's my little stylish script. I believe it should be working on both firefox and chromium but you need stylish extension installed:
Code: Select all
@namespace url(http://www.w3.org/1999/xhtml);
@-moz-document domain("www.raspberrypi.org"), domain("raspberrypi.org") {
dt[title="No unread posts"] a.forumtitle {font-weight: normal!important;}
a.postlink {text-decoration: underline!important;}
}