diff --git a/Bootstrap_new/css/theme-modern.css b/Bootstrap_new/css/theme-modern.css index 4ecccbe1..ec16fe23 100644 --- a/Bootstrap_new/css/theme-modern.css +++ b/Bootstrap_new/css/theme-modern.css @@ -1911,4 +1911,44 @@ select[class*="selectpicker"], background-color: #f7e031 !important; /* Un jaune un peu plus soutenu */ transform: scale(1.1); transition: all 0.2s ease; +} + +/* --- LE STYLE DU JOUR COURANT (AUJOURD'HUI) --- */ +/* On cible le lien car jQuery UI applique ses styles dessus */ +.ui-datepicker-today a.ui-state-default { + background-color: #FFF88D !important; /* Ton Jaune Charte */ + color: #212e53 !important; /* Texte bleu foncé */ + font-weight: 800 !important; + border: 1px solid #212e53 !important; /* Bordure pour bien voir le cercle */ + border-radius: 50% !important; /* Cercle parfait */ + + /* On centre le chiffre dans le cercle */ + display: flex !important; + align-items: center; + justify-content: center; + + width: 30px !important; + height: 30px !important; + margin: 0 auto !important; + padding: 0 !important; + box-shadow: 0 2px 4px rgba(0,0,0,0.1) !important; +} + +/* La petite barre rouge sous le chiffre pour le rappel d'importance */ +.ui-datepicker-today a.ui-state-default::after { + content: ''; + position: absolute; + bottom: 2px; + width: 10px; + height: 2px; + background-color: #dc3545; + border-radius: 2px; +} + +/* --- LE STYLE DU JOUR SÉLECTIONNÉ (CLIQUE) --- */ +.ui-datepicker-current-day a.ui-state-active { + background-color: #212e53 !important; /* Primary */ + color: #ffffff !important; /* Blanc */ + border-radius: 50% !important; + border: none !important; } \ No newline at end of file