This commit is contained in:
KONE SOREL 2026-03-19 12:25:26 +00:00
parent 5b338e284e
commit 2cd151a97e

View File

@ -1868,25 +1868,31 @@ select[class*="selectpicker"],
}
/* --- LE STYLE DES ÉTATS (Charte Graphique) --- */
/* A. Jour d'Aujourd'hui : Jaune Charte avec bordure Primary */
/* --- LE STYLE DU JOUR COURANT (AUJOURD'HUI) --- */
.ui-datepicker-today a {
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;
background-color: #FFF88D !important; /* Ton Jaune Charte */
color: #212e53 !important; /* On garde le bleu Primary pour le texte */
font-weight: 800 !important; /* On force un gras très prononcé */
border-radius: 50% !important; /* On en fait une pastille parfaite */
width: 35px;
height: 35px;
display: flex !important;
align-items: center;
justify-content: center;
margin: 0 auto !important;
position: relative;
box-shadow: 0 2px 4px rgba(0,0,0,0.1); /* Un léger relief */
}
/* 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%;
bottom: 2px;
width: 12px;
height: 2px;
background-color: #dc3545; /* Barre rouge horizontale sous le chiffre */
border-radius: 2px;
}
/* Jour Sélectionné (Si l'utilisateur clique dessus) */
@ -1900,7 +1906,9 @@ select[class*="selectpicker"],
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 */
/* Effet au survol pour plus de dynamisme */
.ui-datepicker-today a:hover {
background-color: rgba(255, 248, 141, 0.8) !important; /* Jaune un peu plus fort au survol */
background-color: #f7e031 !important; /* Un jaune un peu plus soutenu */
transform: scale(1.1);
transition: all 0.2s ease;
}