glow on Nostr: You can instruct #Pleroma to not blur #NSFW images. Unfortunately this settings syncs ...
You can instruct #Pleroma to not blur #NSFW images. Unfortunately this settings syncs to other devices and it really shouldn’t. I don’t want them blurred at home, but want them blurred at work. So I have an alternate solution:
Use this CSS in one of the user style extensions like Stylus:
.Attachment:has(.image-container:nth-child(2)) .image-container:first-child {
display: none;
}
I am posting this because this CSS selector is rather complicated, so I am posting it for posterity.
Use this CSS in one of the user style extensions like Stylus:
.Attachment:has(.image-container:nth-child(2)) .image-container:first-child {
display: none;
}
I am posting this because this CSS selector is rather complicated, so I am posting it for posterity.