From c6793e2473f3601e162d1781ba98ee01b2bbefb8 Mon Sep 17 00:00:00 2001 From: Cedric Date: Thu, 11 Dec 2025 15:28:51 +0100 Subject: [PATCH] picto --- assets/css/style.css | 50 +++++++++++++++++++++++++++++++++++++------- 1 file changed, 43 insertions(+), 7 deletions(-) diff --git a/assets/css/style.css b/assets/css/style.css index e83a243..ce20120 100644 --- a/assets/css/style.css +++ b/assets/css/style.css @@ -218,6 +218,7 @@ label { border: 1px solid #d9e2ec; padding: 4px 6px; text-align: center; + position: relative; } .pf-table thead th { @@ -333,13 +334,31 @@ input[type="number"] { box-sizing: border-box; } -/* Bordure verte pour Centre */ +/* Picto pour Centre (toboggan/balançoire) */ .fc-day--has-guard.fc-day--centre { - border: 2px solid #4caf50; + position: relative; } -/* Bordure bleue pour Avis */ +.fc-day--has-guard.fc-day--centre::after { + content: "🎢"; + position: absolute; + top: 2px; + right: 2px; + font-size: 14px; + line-height: 1; + z-index: 2; +} +/* Picto pour Avis (FC Barcelone) */ .fc-day--has-guard.fc-day--avis { - border: 2px solid #2196f3; + position: relative; +} +.fc-day--has-guard.fc-day--avis::after { + content: "⚽"; + position: absolute; + top: 2px; + right: 2px; + font-size: 14px; + line-height: 1; + z-index: 2; } /* --- Combinaisons avec dégradés --- */ @@ -534,11 +553,28 @@ input[type="number"] { } .fc-month-table .fc-day--has-guard.fc-day--centre { - border: 2px solid #4caf50; + position: relative; +} +.fc-month-table .fc-day--has-guard.fc-day--centre::after { + content: "🎢"; + position: absolute; + top: 2px; + right: 2px; + font-size: 12px; + line-height: 1; + z-index: 2; } - .fc-month-table .fc-day--has-guard.fc-day--avis { - border: 2px solid #2196f3; + position: relative; +} +.fc-month-table .fc-day--has-guard.fc-day--avis::after { + content: "⚽"; + position: absolute; + top: 2px; + right: 2px; + font-size: 12px; + line-height: 1; + z-index: 2; } /* Combinaisons avec dégradés pour le calendrier mensuel */