From: Marcus Funch Date: Sat, 21 Jun 2025 17:36:29 +0000 (+0200) Subject: Issue 14491 - Add alt tag indicators to images X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=e214aabf3181536ae871464ebe6ed535a8e3053e;p=friendica.git Issue 14491 - Add alt tag indicators to images --- 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; +}