Fix weekend header cells showing different background in Firefox

FC applies its own weekend background to header <th> elements too.
Force weekend header cells to use the same hsl(0 0% 8% / 0.65) as
weekday headers with !important to override FC's built-in styling.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Kyle 2026-03-13 21:14:21 +08:00
parent a0533ee0a7
commit e630832e76

View File

@ -178,6 +178,10 @@
background-color: hsl(0 0% 8% / 0.65); background-color: hsl(0 0% 8% / 0.65);
border-color: var(--fc-border-color); border-color: var(--fc-border-color);
} }
.fc .fc-col-header-cell.fc-day-sat,
.fc .fc-col-header-cell.fc-day-sun {
background-color: hsl(0 0% 8% / 0.65) !important;
}
.fc-theme-standard td, .fc-theme-standard td,
.fc-theme-standard th { .fc-theme-standard th {