Skip to content

Commit

Permalink
Fix navigation toggle overlap
Browse files Browse the repository at this point in the history
Signed-off-by: Jan C. Borchardt <925062+jancborchardt@users.noreply.github.com>
  • Loading branch information
jancborchardt committed Aug 2, 2023
1 parent 48c1a1c commit a87c736
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 0 deletions.
5 changes: 5 additions & 0 deletions css/app-navigation.scss
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,11 @@
}
}

// Add background to navigation toggle to fix overlap with calendar elements
.app-navigation-toggle {
background-color: var(--color-main-background) !important;
}

.app-navigation {
button.icon-share {
opacity: 0.3 !important;
Expand Down
10 changes: 10 additions & 0 deletions css/fullcalendar.scss
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,16 @@
word-break: break-word;
}

// Prevent events overlapping over day header
.fc .fc-list-sticky .fc-list-day > * {
z-index: 1;
}

// Padding to account for left navigation toggle
.fc-list-table .fc-list-day-cushion {
padding-left: calc(var(--default-clickable-area) + var(--default-grid-baseline) * 2);
}

// highlight current day (exclude day view)
.fc-timeGridWeek-view,
.fc-dayGridMonth-view {
Expand Down

0 comments on commit a87c736

Please sign in to comment.