From b5d452934a74b5451fad629eee24c4b98e96a1d5 Mon Sep 17 00:00:00 2001 From: Pierre Marx Date: Fri, 17 Oct 2025 16:09:49 -0400 Subject: [PATCH] =?UTF-8?q?fix:=20Am=C3=A9liorer=20le=20contraste=20de=20l?= =?UTF-8?q?'=C3=A9l=C3=A9ment=20survol=C3=A9=20dans=20la=20liste=20des=20p?= =?UTF-8?q?ostes?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Fond bleu clair (#e8f0fe) au lieu de bleu foncé (#667eea) - Texte noir foncé (#1a1a1a) au lieu de blanc - Ajout d'un poids de police semi-gras (500) pour meilleure lisibilité - Résout le problème d'illisibilité lors de la navigation au clavier --- styles-modern.css | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/styles-modern.css b/styles-modern.css index ad1c564..c358587 100644 --- a/styles-modern.css +++ b/styles-modern.css @@ -1192,6 +1192,7 @@ body { } .choices__item--choice.is-highlighted { - background: #667eea; - color: white; + background: #e8f0fe !important; /* Bleu très clair pour meilleur contraste */ + color: #1a1a1a !important; /* Texte noir foncé */ + font-weight: 500; /* Légèrement en gras pour lisibilité */ } \ No newline at end of file