Compare commits
3 Commits
0e35d473eb
...
d6f5975fb9
| Author | SHA1 | Date | |
|---|---|---|---|
| d6f5975fb9 | |||
| 40d0bb336c | |||
| 2a850ad8fd |
@ -531,6 +531,10 @@ export default function CalendarPage() {
|
||||
// Timed events in month: dot + title + time right-aligned
|
||||
return (
|
||||
<div className="flex items-center gap-1.5 truncate w-full">
|
||||
<span
|
||||
className="fc-daygrid-event-dot"
|
||||
style={{ borderColor: 'var(--event-color)' }}
|
||||
/>
|
||||
<span className="text-[11px] font-medium truncate">{arg.event.title}</span>
|
||||
{repeatIcon}
|
||||
<span className="umbra-event-time text-[10px] opacity-50 shrink-0 ml-auto tabular-nums">{arg.timeText}</span>
|
||||
|
||||
@ -170,6 +170,18 @@
|
||||
background-color: hsl(0 0% 6%);
|
||||
}
|
||||
|
||||
/* Weekend tint: header cells (higher specificity to override .fc-col-header-cell) */
|
||||
.fc .fc-col-header-cell.fc-day-sat,
|
||||
.fc .fc-col-header-cell.fc-day-sun {
|
||||
background-color: hsl(0 0% 6%) !important;
|
||||
}
|
||||
|
||||
/* Weekend tint: timegrid column cells */
|
||||
.fc .fc-timegrid-col.fc-day-sat,
|
||||
.fc .fc-timegrid-col.fc-day-sun {
|
||||
background-color: hsl(0 0% 6%);
|
||||
}
|
||||
|
||||
.fc .fc-col-header-cell {
|
||||
background-color: hsl(0 0% 8% / 0.65);
|
||||
border-color: var(--fc-border-color);
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user