opti vue mensuelle

This commit is contained in:
2026-05-06 20:49:52 +02:00
parent 2b2150870c
commit 8a6abe5f8e
6 changed files with 183 additions and 22 deletions
@@ -740,6 +740,15 @@ td.col-laia-sub {
gap: 4px;
}
/* --- BOUTON DE MENU ACTIF (Élément déjà enregistré) --- */
.fc-menu-btn--active {
background: #eff6ff;
border-color: var(--pf-primary);
color: var(--pf-primary);
/* Un léger inset shadow pour rendre la bordure un peu plus épaisse sans casser la taille */
box-shadow: inset 0 0 0 1px var(--pf-primary);
}
/* Table specifique modale vacances */
.fc-holidays-table {
width: 100%;
@@ -827,6 +836,55 @@ td.col-laia-sub {
box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}
/* --- BOUTON AUJOURD'HUI & CONTROLES --- */
.fc-view-controls {
align-items: center; /* Pour bien centrer le nouveau bouton */
}
.fc-today-button {
background: white;
border: 1px solid var(--pf-border);
border-radius: 8px;
padding: 6px 12px;
font-size: 0.85rem;
font-weight: 700;
color: var(--pf-primary);
cursor: pointer;
transition: all 0.2s;
box-shadow: var(--pf-shadow-sm);
}
.fc-today-button:hover {
background: #eff6ff;
border-color: var(--pf-primary);
}
.fc-view-divider {
width: 1px;
height: 20px;
background: #cbd5e1;
margin: 0 8px;
}
/* --- MISE EN ÉVIDENCE DU JOUR EN COURS --- */
.fc-day--today {
background: #eff6ff !important;
box-shadow: inset 0 0 0 1px #bfdbfe !important;
}
.fc-day--today .fc-day-number {
display: inline;
background: none;
width: auto;
height: auto;
box-shadow: none;
border-radius: 0;
margin: 0;
color: var(--pf-primary);
font-weight: 900;
font-size: 1.1em;
}
@media (max-width: 768px) {
.fc-smart-select {
font-size: 1rem;
@@ -890,4 +948,10 @@ td.col-laia-sub {
border-radius: 10px;
margin: 0 auto 15px auto;
}
.fc-two-months-container,
.fc-three-months-container {
display: flex !important;
flex-direction: column !important;
gap: 20px !important;
}
}