From 801af0df914005509c9435ab5b78962733ccb7d9 Mon Sep 17 00:00:00 2001 From: syoul Date: Wed, 3 Dec 2025 16:42:32 +0100 Subject: [PATCH] =?UTF-8?q?style:=20am=C3=A9liorer=20la=20visibilit=C3=A9?= =?UTF-8?q?=20des=20ic=C3=B4nes=20de=20navigation=20dans=20le=20header?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Ajout de styles CSS pour rendre les icônes SVG plus visibles - Force la couleur #2ecc71 pour les icônes de navigation - Améliore la visibilité des liens dans la navigation - S'assure que l'icône '?' est toujours visible --- custom.css | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/custom.css b/custom.css index d91a290..f6e2395 100644 --- a/custom.css +++ b/custom.css @@ -1,2 +1,34 @@ /* Use this file to optionally override global css styles and use with caution. */ /* See README.md for hints and examples: https://github.com/AOEpeople/aoe_technology_radar/ */ + +/* Améliorer la visibilité des icônes de navigation */ +nav[class*="Navigation"] svg, +nav svg, +header nav svg { + fill: #2ecc71 !important; + width: 22px !important; + height: 22px !important; + display: inline-block !important; + vertical-align: middle !important; + margin-right: 6px !important; + opacity: 1 !important; + visibility: visible !important; +} + +/* S'assurer que les liens de navigation sont visibles */ +nav[class*="Navigation"] a, +nav a, +header nav a { + display: inline-flex !important; + align-items: center !important; + color: #fff !important; + text-decoration: none !important; + font-size: 14px !important; +} + +nav[class*="Navigation"] a:hover, +nav a:hover, +header nav a:hover { + color: #2ecc71 !important; + text-decoration: underline !important; +}