From faa273f0ded4897273d4dd54f04a0d6d8451550f Mon Sep 17 00:00:00 2001 From: claude-dev Date: Thu, 5 Mar 2026 18:02:53 +0100 Subject: [PATCH] =?UTF-8?q?Fix:=20Barrierefreiheit=20"Gr=C3=B6=C3=9Fere=20?= =?UTF-8?q?Schrift"=20funktioniert=20jetzt?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit CSS zoom statt font-size auf Root, da alle Schriftgrößen in px definiert sind und font-size:115% auf :root keine Wirkung hatte. Co-Authored-By: Claude Opus 4.6 --- src/static/css/style.css | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/static/css/style.css b/src/static/css/style.css index e8918c1..0da61a4 100644 --- a/src/static/css/style.css +++ b/src/static/css/style.css @@ -4067,8 +4067,9 @@ select:focus-visible, textarea:focus-visible, } /* === A11y: Größere Schrift === */ -[data-a11y-fontsize="true"] { - font-size: 115%; +/* === A11y: Groessere Schrift (zoom skaliert auch px-basierte font-sizes) === */ +[data-a11y-fontsize="true"] body { + zoom: 1.15; } /* === A11y: Animationen aus === */