diff --git a/view/global.css b/view/global.css index 8df8d92e52..86e8ccc933 100644 --- a/view/global.css +++ b/view/global.css @@ -814,3 +814,16 @@ summary.wall-item-summary { max-width: 70ch; overflow-wrap: break-word; } + +/* Add alt tag indicators to the relevant images */ +a:has(img.has-alt-description)::after { + background: lightgray; + border-radius: 4px; + color: black; + content: "ALT"; + font-weight: bold; + padding: 3px 8px; + position: absolute; + bottom: 10px; + right: 10px; +}