feat: remplacer couleurs hardcodées bouton segmenté sidebar par variables CSS thème (--primary/--primary-hover) et box-shadow rgba bleu→noir générique pour support multi-thèmes

This commit is contained in:
Bruno Charest 2026-04-20 11:43:33 -04:00
parent 52b68c7a08
commit 1c469b2329

View File

@ -290,10 +290,10 @@ a:focus:not(:focus-visible) {
/* Sidebar Segmented Add Button */ /* Sidebar Segmented Add Button */
.sidebar-add-segmented { .sidebar-add-segmented {
display: flex; 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; border-radius: 0.75rem;
overflow: hidden; 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 { .sidebar-add-segment {