NSFW = Not Safe For Work
I posted a userstyle called "Mark NSFW links on reddit.com" to make those links a bit more visible.
The code:
@namespace url(http://www.w3.org/1999/xhtml);
@-moz-document domain("reddit.com") {
a[href="/r/nsfw/"].link-subreddit {
color: red !important;
font-weight: bold !important;
}
}
UPDATE: Change the "link-subreddit" to "hover" for the new layout.
UPDATE (2009-03-07): Hey, userstyle.org has a password recovery now! I've updated the userstyle. Too bad there's no way to comment on the review there that says the style doesn't work. It works now.
@namespace url(http://www.w3.org/1999/xhtml);
@-moz-document domain("reddit.com") {
a[href="/r/nsfw/"].hover {
color: red !important;
font-weight: bold !important;
}
}