855 lines
18 KiB
CSS
855 lines
18 KiB
CSS
/* modules/family-calendar/family-calendar.css */
|
|
|
|
:root {
|
|
/* Couleurs sémantiques Calendrier */
|
|
--c-school-holiday: #ede9fe;
|
|
--c-public-holiday: repeating-linear-gradient(
|
|
45deg,
|
|
#f8fafc,
|
|
#f8fafc 8px,
|
|
#f1f5f9 8px,
|
|
#f1f5f9 16px
|
|
);
|
|
--c-off-carole: #fef3c7;
|
|
--c-extra-off: #fee2e2;
|
|
--c-selected: #dbeafe;
|
|
|
|
/* Thèmes Parents (Sync Budget) */
|
|
--bg-alex: #ecfeff;
|
|
--text-alex: #0891b2;
|
|
--bg-laia: #fffbeb;
|
|
--text-laia: #d97706;
|
|
|
|
/* Rappel des variables Global Design System pour cohérence */
|
|
--pf-primary: #3b82f6;
|
|
--pf-border: #e2e8f0;
|
|
--pf-bg-lighter: #f8fafc;
|
|
--pf-shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
|
|
}
|
|
|
|
.pf-family-calendar .pf-main {
|
|
padding-top: 20px;
|
|
padding-bottom: 40px;
|
|
}
|
|
|
|
/* En-tête & Boutons */
|
|
.fc-header-row {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
margin-bottom: 24px;
|
|
}
|
|
.pf-btn-icon-text {
|
|
background: white;
|
|
border: 1px solid var(--pf-border);
|
|
border-radius: 50px;
|
|
padding: 10px 20px;
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
font-size: 0.9rem;
|
|
font-weight: 600;
|
|
color: #475569;
|
|
cursor: pointer;
|
|
transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
|
box-shadow: var(--pf-shadow-sm);
|
|
}
|
|
.pf-btn-icon-text:hover {
|
|
border-color: var(--pf-primary);
|
|
color: var(--pf-primary);
|
|
background: #f8fafc;
|
|
transform: translateY(-1px);
|
|
box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
|
|
}
|
|
|
|
/* Calendrier Mensuel */
|
|
.fc-month-calendar-wrapper {
|
|
background: white;
|
|
border: 1px solid var(--pf-border);
|
|
border-radius: 16px;
|
|
padding: 24px;
|
|
margin-bottom: 32px;
|
|
box-shadow: var(--pf-shadow-sm);
|
|
}
|
|
.fc-month-header {
|
|
display: flex !important;
|
|
flex-direction: column !important;
|
|
gap: 16px !important;
|
|
margin-bottom: 20px !important;
|
|
}
|
|
.fc-month-nav-row {
|
|
display: flex !important;
|
|
align-items: center !important;
|
|
justify-content: space-between !important;
|
|
width: 100% !important;
|
|
}
|
|
.fc-month-nav-row h3 {
|
|
margin: 0 !important;
|
|
font-size: 1.5rem !important;
|
|
font-weight: 800 !important;
|
|
color: #0f172a;
|
|
text-transform: capitalize !important;
|
|
text-align: center !important;
|
|
flex-grow: 1 !important;
|
|
}
|
|
.fc-nav-button {
|
|
width: 40px;
|
|
height: 40px;
|
|
border-radius: 50%;
|
|
border: 1px solid var(--pf-border);
|
|
background: white;
|
|
cursor: pointer;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-size: 20px;
|
|
transition: all 0.2s;
|
|
color: #64748b;
|
|
}
|
|
.fc-nav-button:hover {
|
|
border-color: var(--pf-primary);
|
|
color: var(--pf-primary);
|
|
background: #eff6ff;
|
|
}
|
|
|
|
.fc-view-controls {
|
|
display: flex !important;
|
|
width: 100% !important;
|
|
background: #f1f5f9 !important;
|
|
padding: 4px !important;
|
|
border-radius: 12px !important;
|
|
}
|
|
.fc-view-button {
|
|
flex: 1 !important;
|
|
text-align: center !important;
|
|
background: transparent;
|
|
border: none;
|
|
border-radius: 6px;
|
|
padding: 6px 16px;
|
|
font-size: 0.85rem;
|
|
font-weight: 600;
|
|
color: var(--pf-text-muted);
|
|
cursor: pointer;
|
|
transition: 0.2s;
|
|
}
|
|
.fc-view-button--active {
|
|
background: white !important;
|
|
color: var(--pf-primary) !important;
|
|
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08) !important;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.fc-month-calendar {
|
|
width: 100%;
|
|
display: block;
|
|
overflow-x: auto;
|
|
}
|
|
.fc-month-table {
|
|
min-width: 100% !important;
|
|
width: 100% !important;
|
|
table-layout: fixed;
|
|
border-collapse: separate !important;
|
|
border-spacing: 0;
|
|
border-radius: 12px;
|
|
overflow: hidden;
|
|
border: 1px solid var(--pf-border) !important;
|
|
}
|
|
.fc-month-table th {
|
|
padding: 10px !important;
|
|
font-size: 0.8rem !important;
|
|
background: #f8fafc !important;
|
|
color: #64748b !important;
|
|
font-weight: 700 !important;
|
|
text-transform: uppercase;
|
|
border-bottom: 1px solid var(--pf-border) !important;
|
|
border-right: 1px solid var(--pf-border) !important;
|
|
}
|
|
.fc-month-table td {
|
|
height: 80px;
|
|
padding: 6px !important;
|
|
font-size: 0.85rem;
|
|
vertical-align: top;
|
|
position: relative;
|
|
cursor: pointer;
|
|
border-right: 1px solid var(--pf-border) !important;
|
|
border-bottom: 1px solid var(--pf-border) !important;
|
|
transition: background 0.1s;
|
|
}
|
|
.fc-month-table td:hover:not(.fc-day--other-month) {
|
|
background: #f1f5f9;
|
|
}
|
|
.fc-day--other-month {
|
|
background: #fcfcfc !important;
|
|
}
|
|
|
|
/* Vues Multi-mois */
|
|
.fc-two-months-container {
|
|
display: grid;
|
|
grid-template-columns: 1fr 1fr;
|
|
gap: 24px;
|
|
width: 100%;
|
|
overflow-x: auto;
|
|
}
|
|
.fc-three-months-container {
|
|
display: grid;
|
|
grid-template-columns: repeat(3, 1fr);
|
|
gap: 24px;
|
|
width: 100%;
|
|
overflow-x: auto;
|
|
}
|
|
.fc-month-title {
|
|
text-align: center;
|
|
font-weight: 700;
|
|
margin-bottom: 12px;
|
|
padding-bottom: 8px;
|
|
border-bottom: 2px solid var(--pf-primary);
|
|
text-transform: capitalize;
|
|
}
|
|
|
|
/* Décompte Congés (Pills) */
|
|
.fc-month-balances {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
justify-content: center;
|
|
gap: 15px;
|
|
margin-top: 20px;
|
|
padding-top: 15px;
|
|
border-top: 1px dashed var(--pf-border);
|
|
}
|
|
.fc-minimal-balance-card {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 12px;
|
|
background: white;
|
|
padding: 8px 16px;
|
|
border-radius: 50px;
|
|
border: 1px solid var(--pf-border);
|
|
box-shadow: var(--pf-shadow-sm);
|
|
}
|
|
.fc-minimal-balance-card strong.alex {
|
|
color: var(--text-alex);
|
|
}
|
|
.fc-minimal-balance-card strong.laia {
|
|
color: var(--text-laia);
|
|
}
|
|
.fc-minimal-chips {
|
|
display: flex;
|
|
gap: 8px;
|
|
flex-wrap: wrap;
|
|
}
|
|
.fc-min-chip {
|
|
display: flex;
|
|
align-items: center;
|
|
background: white;
|
|
border-radius: 20px;
|
|
padding: 3px 10px;
|
|
font-size: 0.75rem;
|
|
border: 1px solid var(--pf-border);
|
|
font-weight: 600;
|
|
}
|
|
.fc-min-chip .type {
|
|
font-weight: 700;
|
|
color: var(--pf-text-muted);
|
|
margin-right: 6px;
|
|
}
|
|
.fc-min-chip .val {
|
|
font-weight: 800;
|
|
color: var(--pf-text-main);
|
|
}
|
|
.fc-used-badge {
|
|
margin-left: 6px;
|
|
background: #fee2e2;
|
|
color: var(--pf-danger);
|
|
padding: 1px 5px;
|
|
border-radius: 10px;
|
|
font-size: 0.65rem;
|
|
font-weight: bold;
|
|
}
|
|
.fc-burn-alert {
|
|
margin-left: 5px;
|
|
cursor: help;
|
|
animation: pulseBurn 2s infinite;
|
|
font-size: 0.9rem;
|
|
display: flex;
|
|
align-items: center;
|
|
color: var(--pf-danger);
|
|
font-weight: bold;
|
|
}
|
|
@keyframes pulseBurn {
|
|
0% {
|
|
transform: scale(1);
|
|
opacity: 0.8;
|
|
}
|
|
50% {
|
|
transform: scale(1.2);
|
|
opacity: 1;
|
|
}
|
|
100% {
|
|
transform: scale(1);
|
|
opacity: 0.8;
|
|
}
|
|
}
|
|
|
|
/* Couleurs des jours */
|
|
.fc-day--school-holiday {
|
|
background: var(--c-school-holiday) !important;
|
|
}
|
|
.fc-day--public-holiday {
|
|
background: var(--c-public-holiday) !important;
|
|
font-weight: 700;
|
|
}
|
|
.fc-day--off-carole {
|
|
background: var(--c-off-carole) !important;
|
|
}
|
|
.fc-day--extra-off-carole {
|
|
background: var(--c-extra-off) !important;
|
|
}
|
|
.fc-day--selected {
|
|
background: var(--c-selected) !important;
|
|
outline: 2px solid var(--pf-primary);
|
|
z-index: 5;
|
|
}
|
|
.fc-day--centre::after {
|
|
content: "🏫";
|
|
position: absolute;
|
|
top: 2px;
|
|
right: 2px;
|
|
font-size: 12px;
|
|
}
|
|
.fc-day--avis::after {
|
|
content: "";
|
|
position: absolute;
|
|
top: 2px;
|
|
right: 2px;
|
|
width: 14px;
|
|
height: 14px;
|
|
background: url("/modules/family-calendar/assets/img/avis.svg") no-repeat
|
|
center;
|
|
background-size: contain;
|
|
}
|
|
.fc-pep-sick-emoji {
|
|
position: absolute;
|
|
bottom: 2px;
|
|
right: 2px;
|
|
font-size: 12px;
|
|
}
|
|
.fc-day--off-carole.fc-day--school-holiday,
|
|
.fc-day--extra-off-carole.fc-day--school-holiday,
|
|
.fc-day--centre.fc-day--school-holiday,
|
|
.fc-day--avis.fc-day--school-holiday {
|
|
box-shadow: inset 0 -8px 0 0 var(--c-school-holiday) !important;
|
|
}
|
|
|
|
/* Planning Hebo (Desktop) */
|
|
.fc-week-header {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
margin-bottom: 16px;
|
|
flex-wrap: wrap;
|
|
}
|
|
.fc-week-nav-controls {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 12px;
|
|
background: white;
|
|
padding: 4px 12px;
|
|
border-radius: 50px;
|
|
}
|
|
#fc-current-school-year-label {
|
|
font-size: 1rem;
|
|
font-weight: 800;
|
|
min-width: 120px;
|
|
text-align: center;
|
|
}
|
|
#planningTable-wrapper {
|
|
max-height: 80vh;
|
|
overflow: auto;
|
|
border: 1px solid var(--pf-border);
|
|
border-radius: 16px;
|
|
background: white;
|
|
box-shadow: var(--pf-shadow-sm);
|
|
position: relative;
|
|
margin-bottom: 24px;
|
|
}
|
|
#planningTable {
|
|
width: 100%;
|
|
min-width: 1000px;
|
|
border-collapse: separate;
|
|
border-spacing: 0;
|
|
}
|
|
|
|
/* =========================================================
|
|
HARMONISATION DES BORDURES ET HEADERS STICKY (1px strict)
|
|
========================================================= */
|
|
#planningTable thead tr {
|
|
height: 30px; /* On fixe la hauteur pour un calcul parfait */
|
|
}
|
|
#planningTable thead th {
|
|
position: sticky;
|
|
background: #f8fafc !important;
|
|
border: none !important; /* On supprime les bordures natives */
|
|
|
|
/* On utilise UNIQUEMENT des ombres internes pour simuler 1px de bordure sans doublement */
|
|
box-shadow:
|
|
inset 0 -1px 0 var(--pf-border),
|
|
inset -1px 0 0 var(--pf-border) !important;
|
|
|
|
padding: 6px;
|
|
font-size: 0.75rem;
|
|
z-index: 20;
|
|
color: #475569;
|
|
background-clip: padding-box;
|
|
}
|
|
#planningTable thead tr:nth-child(1) th {
|
|
top: 0;
|
|
z-index: 22; /* Au premier plan */
|
|
}
|
|
#planningTable thead tr:nth-child(2) th {
|
|
top: 30px; /* Exactement la hauteur de la ligne 1 */
|
|
z-index: 21;
|
|
}
|
|
#planningTable thead tr:nth-child(3) th {
|
|
top: 60px; /* Ligne 1 + Ligne 2 */
|
|
z-index: 20;
|
|
}
|
|
|
|
.col-alex.header-group,
|
|
.col-alex-sub {
|
|
background: var(--bg-alex) !important;
|
|
color: var(--text-alex) !important;
|
|
}
|
|
.col-laia.header-group,
|
|
.col-laia-sub {
|
|
background: var(--bg-laia) !important;
|
|
color: var(--text-laia) !important;
|
|
}
|
|
|
|
/* Cellules standards du corps */
|
|
#planningTable tbody td {
|
|
position: relative;
|
|
border: none !important; /* Reset de sécurité */
|
|
border-right: 1px solid var(--pf-border) !important;
|
|
border-bottom: 1px solid var(--pf-border) !important;
|
|
height: 36px;
|
|
padding: 0 4px;
|
|
text-align: center;
|
|
font-size: 0.85rem;
|
|
white-space: nowrap;
|
|
cursor: pointer;
|
|
}
|
|
|
|
/* Dimensions des colonnes */
|
|
.col-month {
|
|
width: 54px !important;
|
|
min-width: 54px !important;
|
|
max-width: 54px !important;
|
|
background: white;
|
|
text-align: center;
|
|
vertical-align: middle;
|
|
}
|
|
th.col-day,
|
|
td.col-day {
|
|
min-width: 35px !important;
|
|
}
|
|
th.col-total,
|
|
td.col-total,
|
|
th.col-alex-sub,
|
|
td.col-alex-sub,
|
|
th.col-laia-sub,
|
|
td.col-laia-sub {
|
|
width: 32px !important;
|
|
min-width: 32px !important;
|
|
max-width: 32px !important;
|
|
}
|
|
|
|
.rotated-text span {
|
|
writing-mode: vertical-rl;
|
|
transform: rotate(180deg);
|
|
font-size: 0.7rem;
|
|
color: var(--pf-text-muted);
|
|
}
|
|
|
|
/* =========================================================
|
|
GESTION DES COLONNES STICKY (Mois & Semaine)
|
|
========================================================= */
|
|
|
|
#planningTable tbody td.col-sticky-mois {
|
|
position: sticky !important;
|
|
left: 0 !important;
|
|
z-index: 15 !important;
|
|
background: white !important;
|
|
padding: 0 !important;
|
|
}
|
|
|
|
#planningTable tbody td.col-sticky-mois .fc-sticky-mois-label {
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 50%;
|
|
transform: translate(-50%, -50%);
|
|
writing-mode: vertical-rl;
|
|
letter-spacing: 1px;
|
|
text-align: center;
|
|
}
|
|
|
|
/* 2. Sticky Semaine (Body) */
|
|
#planningTable tbody td.col-sticky-sem {
|
|
position: sticky !important;
|
|
left: 54px !important;
|
|
z-index: 14 !important;
|
|
background: white !important;
|
|
/* Ombre portée pour délimiter la zone sticky du reste du tableau */
|
|
box-shadow: 4px 0 6px -2px rgba(0, 0, 0, 0.1);
|
|
}
|
|
|
|
/* 3. Sticky Mois (Header) */
|
|
#planningTable thead tr th.col-sticky-mois {
|
|
position: sticky !important;
|
|
top: 0 !important;
|
|
left: 0 !important;
|
|
z-index: 30 !important;
|
|
background: var(--pf-bg-lighter) !important;
|
|
/* Les bordures sont gérées par le box-shadow général du thead th */
|
|
}
|
|
|
|
/* 4. Sticky Semaine (Header) */
|
|
#planningTable thead tr th.col-sticky-sem {
|
|
position: sticky !important;
|
|
top: 0 !important;
|
|
left: 54px !important;
|
|
z-index: 29 !important;
|
|
background: var(--pf-bg-lighter) !important;
|
|
/* Ombre interne (bordures) + Ombre portée (effet sticky) */
|
|
box-shadow:
|
|
inset 0 -1px 0 var(--pf-border),
|
|
inset -1px 0 0 var(--pf-border),
|
|
4px 0 6px -2px rgba(0, 0, 0, 0.1) !important;
|
|
}
|
|
|
|
/* Rétablissement horizontal pour les headers mois et semaine */
|
|
#planningTable thead th.col-month,
|
|
#planningTable tbody td.col-sticky-sem {
|
|
writing-mode: horizontal-tb;
|
|
transform: none;
|
|
padding: 6px !important;
|
|
text-align: center;
|
|
}
|
|
|
|
/* Panneaux bas & Légendes */
|
|
.fc-bottom-grid {
|
|
display: grid;
|
|
grid-template-columns: 2fr 1fr;
|
|
gap: 24px;
|
|
align-items: start;
|
|
}
|
|
|
|
/* Nouvelles bordures style "Budget" pour les conteneurs */
|
|
.pf-card {
|
|
background: white;
|
|
border: 1px solid var(--pf-border);
|
|
border-radius: 16px;
|
|
box-shadow: var(--pf-shadow-sm);
|
|
padding: 24px;
|
|
}
|
|
.pf-card-title {
|
|
margin-top: 0;
|
|
margin-bottom: 16px;
|
|
font-size: 1.25rem;
|
|
color: #0f172a;
|
|
border-bottom: 1px solid var(--pf-border);
|
|
padding-bottom: 12px;
|
|
}
|
|
|
|
.pf-legend-grid {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 8px;
|
|
}
|
|
.pf-legend-item {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 6px;
|
|
font-size: 0.75rem;
|
|
padding: 6px 10px;
|
|
background: #f8fafc;
|
|
border: 1px solid var(--pf-border);
|
|
border-radius: 8px;
|
|
font-weight: 500;
|
|
color: #475569;
|
|
}
|
|
.pf-legend-color {
|
|
width: 16px;
|
|
height: 16px;
|
|
border-radius: 4px;
|
|
}
|
|
.fc-legend-school-holiday {
|
|
background: var(--c-school-holiday);
|
|
}
|
|
.fc-legend-public-holiday {
|
|
background: var(--c-public-holiday);
|
|
}
|
|
.fc-legend-off-carole {
|
|
background: var(--c-off-carole);
|
|
}
|
|
.fc-legend-extra-off-carole {
|
|
background: var(--c-extra-off);
|
|
}
|
|
.fc-legend-centre::after {
|
|
content: "🏫";
|
|
}
|
|
.fc-legend-pep-sick::after {
|
|
content: "🤒";
|
|
}
|
|
.fc-legend-avis {
|
|
background: white url("/modules/family-calendar/assets/img/avis.svg")
|
|
no-repeat center;
|
|
background-size: contain;
|
|
border: none;
|
|
}
|
|
|
|
.fc-summary-header {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
margin-bottom: 16px;
|
|
padding-bottom: 12px;
|
|
border-bottom: 1px solid var(--pf-border);
|
|
}
|
|
.fc-summ-select {
|
|
border: 1px solid var(--pf-border);
|
|
border-radius: 6px;
|
|
padding: 4px 8px;
|
|
font-size: 0.8rem;
|
|
height: auto;
|
|
background: #f8fafc;
|
|
}
|
|
.fc-summary-item {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
padding: 12px 4px;
|
|
border-bottom: 1px solid var(--pf-border); /* Ligne de séparation visible */
|
|
}
|
|
.fc-summary-item:last-child {
|
|
border-bottom: none;
|
|
}
|
|
.fc-summary-label {
|
|
font-size: 0.85rem;
|
|
color: #64748b;
|
|
font-weight: 600;
|
|
}
|
|
.fc-summary-value {
|
|
font-size: 1rem;
|
|
font-weight: 700;
|
|
color: #0f172a;
|
|
}
|
|
|
|
/* Menu Contextuel Tactile */
|
|
.fc-selection-menu {
|
|
position: absolute;
|
|
z-index: 9000;
|
|
background: rgba(255, 255, 255, 0.95);
|
|
backdrop-filter: blur(8px);
|
|
border: 1px solid rgba(226, 232, 240, 0.8);
|
|
box-shadow: var(--pf-shadow-lg);
|
|
border-radius: 16px;
|
|
padding: 10px 12px;
|
|
min-width: 220px;
|
|
display: none;
|
|
animation: menuPopIn 0.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
|
|
transform-origin: top center;
|
|
}
|
|
@keyframes menuPopIn {
|
|
from {
|
|
opacity: 0;
|
|
transform: scale(0.95) translateY(10px);
|
|
}
|
|
to {
|
|
opacity: 1;
|
|
transform: scale(1) translateY(0);
|
|
}
|
|
}
|
|
.fc-menu-section {
|
|
padding: 6px 0;
|
|
border-bottom: 1px dashed #cbd5e1;
|
|
}
|
|
.fc-menu-section:last-child {
|
|
border: none;
|
|
padding-bottom: 0;
|
|
}
|
|
.fc-menu-header {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
margin-bottom: 6px;
|
|
}
|
|
.fc-menu-section strong {
|
|
font-size: 0.7rem;
|
|
text-transform: uppercase;
|
|
color: var(--pf-text-muted);
|
|
}
|
|
.fc-menu-grid {
|
|
display: grid;
|
|
grid-template-columns: 1fr 1fr;
|
|
gap: 4px;
|
|
}
|
|
.fc-menu-btn {
|
|
background: white;
|
|
border: 1px solid var(--pf-border);
|
|
padding: 6px 8px;
|
|
border-radius: 8px;
|
|
font-size: 0.8rem;
|
|
font-weight: 600;
|
|
cursor: pointer;
|
|
width: 100%;
|
|
transition: 0.2s;
|
|
box-shadow: var(--pf-shadow-sm);
|
|
}
|
|
.fc-menu-btn:hover {
|
|
background: var(--pf-bg-page);
|
|
border-color: var(--pf-primary);
|
|
color: var(--pf-primary);
|
|
}
|
|
.fc-menu-clear-icon {
|
|
background: transparent;
|
|
border: none;
|
|
color: #94a3b8;
|
|
cursor: pointer;
|
|
padding: 4px;
|
|
display: flex;
|
|
border-radius: 6px;
|
|
}
|
|
.fc-menu-clear-icon svg {
|
|
width: 14px;
|
|
height: 14px;
|
|
}
|
|
.fc-menu-clear-icon:hover {
|
|
background: #fef2f2;
|
|
color: var(--pf-danger);
|
|
}
|
|
.fc-menu-leaves-table table {
|
|
width: 100%;
|
|
border-spacing: 2px;
|
|
}
|
|
.fc-menu-leaves-table th {
|
|
font-size: 0.7rem;
|
|
color: var(--pf-text-muted);
|
|
text-align: center;
|
|
}
|
|
.fc-th-inline {
|
|
display: flex;
|
|
justify-content: center;
|
|
gap: 4px;
|
|
}
|
|
|
|
/* Table specifique modale vacances */
|
|
.fc-holidays-table {
|
|
width: 100%;
|
|
border-collapse: collapse;
|
|
font-size: 0.85rem;
|
|
}
|
|
.fc-holidays-table th {
|
|
background: #f8fafc;
|
|
padding: 12px 16px;
|
|
text-align: left;
|
|
font-weight: 600;
|
|
position: sticky;
|
|
top: 0;
|
|
border-bottom: 2px solid var(--pf-border);
|
|
}
|
|
.fc-holidays-table td {
|
|
padding: 10px 16px;
|
|
border-bottom: 1px solid var(--pf-border);
|
|
}
|
|
.fc-holidays-table tr:nth-child(even) {
|
|
background: #fafafa;
|
|
}
|
|
|
|
/* === MODALES : Alignement du Header et de la Croix === */
|
|
.pf-modal-header {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: flex-start;
|
|
margin-bottom: 15px;
|
|
border-bottom: 1px solid var(--pf-border);
|
|
padding-bottom: 15px;
|
|
}
|
|
|
|
.pf-modal-header .pf-modal-title {
|
|
margin: 0;
|
|
padding: 0;
|
|
border-bottom: none; /* On annule la bordure par défaut du global.css pour la déléguer au header */
|
|
flex-grow: 1;
|
|
}
|
|
|
|
.pf-modal-close {
|
|
background: none;
|
|
border: none;
|
|
font-size: 1.8rem;
|
|
line-height: 1;
|
|
cursor: pointer;
|
|
color: #94a3b8;
|
|
padding: 0 0 0 15px;
|
|
transition: color 0.2s;
|
|
}
|
|
|
|
.pf-modal-close:hover {
|
|
color: #ef4444; /* Devient rouge au survol */
|
|
}
|
|
|
|
/* Mobile */
|
|
@media (max-width: 768px) {
|
|
.pf-family-calendar .pf-container {
|
|
padding: 0 !important;
|
|
}
|
|
.fc-header-row {
|
|
flex-direction: column;
|
|
gap: 15px;
|
|
padding: 0 10px;
|
|
}
|
|
.fc-header-row > div {
|
|
flex-direction: column;
|
|
width: 100%;
|
|
}
|
|
.pf-btn-icon-text {
|
|
width: 100%;
|
|
justify-content: center;
|
|
}
|
|
.fc-week-header,
|
|
#planningTable-wrapper {
|
|
display: none !important;
|
|
}
|
|
.fc-month-calendar-wrapper {
|
|
padding: 16px !important;
|
|
margin-bottom: 20px !important;
|
|
}
|
|
.fc-month-table td {
|
|
height: 46px !important;
|
|
padding: 2px !important;
|
|
font-size: 0.75rem !important;
|
|
}
|
|
.fc-bottom-grid {
|
|
grid-template-columns: 1fr;
|
|
padding: 10px;
|
|
}
|
|
.fc-selection-menu {
|
|
position: fixed !important;
|
|
top: auto !important;
|
|
left: 0 !important;
|
|
bottom: 0 !important;
|
|
width: 100% !important;
|
|
border-radius: 24px 24px 0 0;
|
|
padding: 24px 20px;
|
|
transform: translateY(100%);
|
|
animation: slideUpSheet 0.3s forwards;
|
|
z-index: 10000 !important;
|
|
}
|
|
.fc-selection-menu::before {
|
|
content: "";
|
|
display: block;
|
|
width: 40px;
|
|
height: 5px;
|
|
background: #cbd5e1;
|
|
border-radius: 10px;
|
|
margin: 0 auto 15px auto;
|
|
}
|
|
}
|