From d959803985f6e26ec6c037b4b5653e261137a30c Mon Sep 17 00:00:00 2001 From: Kyle Pope Date: Fri, 13 Mar 2026 14:19:20 +0800 Subject: [PATCH] Fix weekend tint not rendering: replace color-mix() with rgba() autoprefixer was silently stripping color-mix() during the PostCSS build pipeline, causing the weekend tint background rules to produce no output in the deployed CSS bundle. Replaced the three weekend tint color-mix() calls with equivalent rgba(255,255,255,0.05) which autoprefixer passes through unchanged. Co-Authored-By: Claude Sonnet 4.6 --- frontend/src/index.css | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/frontend/src/index.css b/frontend/src/index.css index a15d758..114da59 100644 --- a/frontend/src/index.css +++ b/frontend/src/index.css @@ -170,19 +170,19 @@ the tint must target the frame itself, not the td. */ .fc .fc-day-sat .fc-daygrid-day-frame, .fc .fc-day-sun .fc-daygrid-day-frame { - background-color: color-mix(in srgb, white 5%, transparent) !important; + background-color: rgba(255, 255, 255, 0.05) !important; } /* Weekend tint: header cells */ .fc .fc-col-header-cell.fc-day-sat, .fc .fc-col-header-cell.fc-day-sun { - background-color: color-mix(in srgb, white 5%, hsl(0 0% 8% / 0.65)) !important; + background-color: rgba(255, 255, 255, 0.05) !important; } /* Weekend tint: timegrid column cells (week/day view) */ .fc .fc-timegrid-col.fc-day-sat, .fc .fc-timegrid-col.fc-day-sun { - background-color: color-mix(in srgb, white 5%, transparent) !important; + background-color: rgba(255, 255, 255, 0.05) !important; }