This post has been de-listed
It is no longer included in search results and normal feeds (front page, hot posts, subreddit posts, etc). It remains visible only via the author's post history.
Admins, this has been an issue for years that has been asked about multiple times.
I really don't want to see porn when I'm checking a user for spam or whatever else. Just a "NSFW" instead of someone's asshole or whatever please.
Open up someone's profile because they asked me to approve their cute kitten post and bam, there's closeup of someone's junk. I'd like to look at them on my own terms, please. Thank you
I've also been asking for more control over displayed content for ages; waiting around for the admins to implement important safety and sanity features is in my experience usually a lost cause, but if you're in search of a work around, here's the CSS I use so I can (more) safely browse mod pages on my phone when out in public. This of course only works on Old Reddit.
You'll need a browser extension to use these, like Stylish, or I think RES or Toolbox or something allows customizing CSS too (though I don't remember for sure).
Simplified version to only blur NSFW images on user profile pages:
body.profile-page .link[data-nsfw="true"] .thumbnail img {
filter: blur(5px);
}
For anyone who has a need to see the NSFW thumbnails, this version will show them on hover; it'll also show all of them if the page URL ends in #siteTable
(I have a toolbar button to add this, and some bookmarked that way):
#siteTable:not(:target) .link[data-nsfw="true"] .thumbnail img:not(:hover) {
filter: blur(5px);
}
Subreddit
Post Details
- Posted
- 1 year ago
- Reddit URL
- View post on reddit.com
- External URL
- reddit.com/r/ModSupport/...