From 5b338e284ed1727bcab7faebc2dbf363de81dd7a Mon Sep 17 00:00:00 2001 From: KONE SOREL Date: Thu, 19 Mar 2026 12:18:31 +0000 Subject: [PATCH] dfg --- Bootstrap_new/css/theme-modern.css | 32 ++++++++++++++++++++++++------ 1 file changed, 26 insertions(+), 6 deletions(-) diff --git a/Bootstrap_new/css/theme-modern.css b/Bootstrap_new/css/theme-modern.css index ece3f326..d9aadae8 100644 --- a/Bootstrap_new/css/theme-modern.css +++ b/Bootstrap_new/css/theme-modern.css @@ -1870,17 +1870,37 @@ select[class*="selectpicker"], /* --- LE STYLE DES ÉTATS (Charte Graphique) --- */ /* A. Jour d'Aujourd'hui : Jaune Charte avec bordure Primary */ .ui-datepicker-today a { - background-color: #FFF88D !important; /* Ton jaune charte */ - color: #dc3545 !important; /* Texte Rouge (Alerte) */ + background-color: rgba(255, 248, 141, 0.5) !important; /* Jaune Charte très doux (50% opacité) */ + color: #dc3545 !important; /* Texte Rouge (Alerte/Aujourd'hui) pour le contraste */ font-weight: bold !important; - border: 1px solid #212e53 !important; /* Bordure Primary */ + position: relative; } -/* B. Jour Sélectionné : Couleur Primary avec texte blanc */ +/* Petit indicateur visuel discret sous le numéro d'aujourd'hui */ +.ui-datepicker-today a::after { + content: ''; + position: absolute; + bottom: 3px; + left: 50%; + transform: translateX(-50%); + width: 4px; + height: 4px; + background-color: #dc3545; /* Point Rouge */ + border-radius: 50%; +} + +/* Jour Sélectionné (Si l'utilisateur clique dessus) */ +/* Couleur Primary Charte avec texte blanc net */ .ui-datepicker-current-day a, .ui-datepicker .ui-state-active { background-color: #212e53 !important; /* Couleur Primary Charte */ - color: #fff !important; /* Texte blanc */ + color: #fff !important; /* Texte blanc pur */ font-weight: bold !important; - border: 1px solid #212e53 !important; + border: none !important; + box-shadow: 0 2px 5px rgba(0,0,0,0.2); /* Légère ombre pour le relief */ +} + +/* Correction pour le survol (Hover) sur aujourd'hui */ +.ui-datepicker-today a:hover { + background-color: rgba(255, 248, 141, 0.8) !important; /* Jaune un peu plus fort au survol */ } \ No newline at end of file