Skip to content

Instantly share code, notes, and snippets.

@wplit
Last active July 16, 2026 22:22
Show Gist options
  • Select an option

  • Save wplit/028fb2526b5254c24ec00c2ab57f8b15 to your computer and use it in GitHub Desktop.

Select an option

Save wplit/028fb2526b5254c24ec00c2ab57f8b15 to your computer and use it in GitHub Desktop.
add arrows to events to show they continue off the calendar
/* Event continues BEFORE */
%root% .x-calendar-event:not(.fc-classic-3J4).fc-classic-USt::before {
content: '<';
color: var(--fc-event-contrast-color);
}
/* Event continues AFTER */
%root% .x-calendar-event.fc-classic-3J4:not(.fc-classic-USt)::after {
content: '>';
color: var(--fc-event-contrast-color);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment