From e214aabf3181536ae871464ebe6ed535a8e3053e Mon Sep 17 00:00:00 2001 From: Marcus Funch Date: Sat, 21 Jun 2025 19:36:29 +0200 Subject: [PATCH] Issue 14491 - Add alt tag indicators to images --- view/global.css | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/view/global.css b/view/global.css index 0215e6d4df..bb7955cd11 100644 --- a/view/global.css +++ b/view/global.css @@ -813,3 +813,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; +} -- 2.39.5