Skip to content

Commit

Permalink
Merge pull request #5392 from nextcloud/backport/5391/stable4.4
Browse files Browse the repository at this point in the history
[stable4.4] Fix navigation toggle overlap
  • Loading branch information
st3iny authored Aug 3, 2023
2 parents dba2256 + d4966de commit c921c04
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 c921c04

Please sign in to comment.