From fdf284a9ff1dc2a148795b9219d67e6f1b5c5540 Mon Sep 17 00:00:00 2001 From: "fefe.clochette" Date: Tue, 9 Dec 2025 12:16:34 +0100 Subject: [PATCH] Auto-commit for deploy to production - 2025-12-09 12:16:34 --- assets/css/style.css | 14 +++----------- assets/js/family-calendar.js | 4 ---- 2 files changed, 3 insertions(+), 15 deletions(-) diff --git a/assets/css/style.css b/assets/css/style.css index f3f9842..9835c80 100644 --- a/assets/css/style.css +++ b/assets/css/style.css @@ -166,19 +166,15 @@ input[type="number"] { background: #ffe0e0; } -.fc-row--school-holiday { - background: #fff5cc; +/* Jour de vacances scolaires dans le calendrier */ +.fc-day--school-holiday { + background-color: #fff5cc; /* choisis le jaune qui te convient */ } .fc-row--bank-holiday { background: #d9f7be; } -/* Ligne de semaine contenant au moins un jour de vacances scolaires */ -.fc-row--school-holiday { - background-color: #fff8d5; /* jaune clair uniforme */ -} - /* Jour individuel en vacances scolaires (cellule) */ .fc-day--school-holiday { background-color: #ffe9a6; /* un ton un peu plus marqué mais pas orange vif */ @@ -202,7 +198,3 @@ input[type="number"] { .fc-holidays-table th { background-color: #f0f4f8; } - -.fc-row--school-holiday td:first-child { - background-color: #ffffff; -} diff --git a/assets/js/family-calendar.js b/assets/js/family-calendar.js index b85be74..56e514d 100644 --- a/assets/js/family-calendar.js +++ b/assets/js/family-calendar.js @@ -306,10 +306,6 @@ function renderTable() { const tr = document.createElement("tr"); - if (week.isSchoolHolidayWeek) { - tr.classList.add("fc-row--school-holiday"); - } - // Colonne Mois if (!monthRowRendered[week.monthKey]) { monthRowRendered[week.monthKey] = true;