This commit is contained in:
KONE SOREL 2026-03-19 12:18:31 +00:00
parent c53695308d
commit 5b338e284e

View File

@ -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 */
}