This commit is contained in:
KONE SOREL 2026-03-19 12:30:55 +00:00
parent 2cd151a97e
commit ef813b6911

View File

@ -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 <a> 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;
}