A userstyle for Bluesky that literally just adds a large, ugly, yellow and red dashed border to images without alt-text in the feed.
Add border to images without alt-text on Bluesky by PunkWasp
Details
AuthorPunkWasp
LicenseNo License
Categorybsky.app
Created
Updated
Size391 B
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Might show the border for images it shouldn't (ex. images in your notifications), I am working on fixing these issues as I notice them.
Source code
/* ==UserStyle==
@name bsky.app
@namespace github.com/openstyles/stylus
@version 1.0.0
@description A new userstyle
@author Me
==/UserStyle== */
@-moz-document url-prefix("https://bsky.app/") {
[data-expoimage="true"] div img[alt=""][accessibilityhint=""] {
outline: 5px dashed yellow;
border: 5px dashed red;
scale: 90%;
}
}