Last active
July 16, 2026 22:22
-
-
Save wplit/028fb2526b5254c24ec00c2ab57f8b15 to your computer and use it in GitHub Desktop.
add arrows to events to show they continue off the calendar
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* 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