From 1c469b232914881be2b4bc5a9a891a8eee78bab2 Mon Sep 17 00:00:00 2001 From: Bruno Charest Date: Mon, 20 Apr 2026 11:43:33 -0400 Subject: [PATCH] =?UTF-8?q?feat:=20remplacer=20couleurs=20hardcod=C3=A9es?= =?UTF-8?q?=20bouton=20segment=C3=A9=20sidebar=20par=20variables=20CSS=20t?= =?UTF-8?q?h=C3=A8me=20(--primary/--primary-hover)=20et=20box-shadow=20rgb?= =?UTF-8?q?a=20bleu=E2=86=92noir=20g=C3=A9n=C3=A9rique=20pour=20support=20?= =?UTF-8?q?multi-th=C3=A8mes?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- shaarli-pro/css/style.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/shaarli-pro/css/style.css b/shaarli-pro/css/style.css index 38d05cc..b5fc3e4 100644 --- a/shaarli-pro/css/style.css +++ b/shaarli-pro/css/style.css @@ -290,10 +290,10 @@ a:focus:not(:focus-visible) { /* Sidebar Segmented Add Button */ .sidebar-add-segmented { display: flex; - background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%); + background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%); border-radius: 0.75rem; overflow: hidden; - box-shadow: 0 4px 6px -1px rgba(59, 130, 246, 0.3), 0 2px 4px -1px rgba(59, 130, 246, 0.2); + box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.2), 0 2px 4px -1px rgba(0, 0, 0, 0.15); } .sidebar-add-segment {