Since the big normalization on reddit.com, there are complaints about the links to posts from the NSFW subreddit. People don't want to click on such links when they are at work. Bare breasts can cost you your job at some places.

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;
 }
}