From d0cf06648e5abee4260b9beb710777c2c3129370 Mon Sep 17 00:00:00 2001 From: LeRatierBretonnier Date: Sun, 29 Mar 2026 16:41:37 +0200 Subject: [PATCH] =?UTF-8?q?Fix=20anomalie=20:=20barre=20domaines=20fond=20?= =?UTF-8?q?vert=20fonc=C3=A9=20+=20texte=20cr=C3=A8me=20lisible?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit La barre .anomaly-skills-bar avait un fond semi-transparent sur fond crème ce qui rendait le texte orange illisible. Passage à fond vert foncé (cohérent avec le header) + texte crème pour les chips. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- styles/items.less | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/styles/items.less b/styles/items.less index 072d87e..9f5475b 100644 --- a/styles/items.less +++ b/styles/items.less @@ -252,8 +252,8 @@ } .anomaly-skills-bar { - background: rgba(0,0,0,0.18); - border-bottom: 1px solid rgba(196,154,26,0.2); + background: var(--cel-green-dark, #0c4c0c); + border-bottom: 2px solid var(--cel-orange, #e07b00); padding: 5px 10px; display: flex; flex-wrap: wrap; @@ -261,19 +261,21 @@ align-items: center; .anomaly-skills-label { - color: var(--cel-orange-light); + color: var(--cel-orange-light, #c49a1a); font-size: 0.72em; text-transform: uppercase; + letter-spacing: 0.05em; margin-right: 2px; + white-space: nowrap; } .anomaly-skill-chip { - background: rgba(196,154,26,0.12); - border: 1px solid rgba(196,154,26,0.35); + background: rgba(196,154,26,0.18); + border: 1px solid rgba(196,154,26,0.55); border-radius: 3px; - padding: 1px 6px; + padding: 1px 7px; font-size: 0.72em; - color: var(--cel-orange-light); + color: var(--cel-cream, #f0e8d4); } }