Skip to content

Commit eb2993b

Browse files
authored
Merge pull request #8470 from nextcloud/backport/8469/stable32
[stable32] fix(menubar): lower z-index: on top of document content, but below modals
2 parents da8aba9 + 1652459 commit eb2993b

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

src/components/Menu/MenuBar.vue

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,8 @@ export default {
237237
top: 0;
238238
bottom: 0;
239239
width: 100%;
240-
z-index: 10021; // above modal-header so menubar is always on top
240+
// Display above link previews and tables, but below dialogs and calendar event popover
241+
z-index: 4;
241242
background-color: var(--color-main-background-translucent);
242243
backdrop-filter: var(--background-blur);
243244
border-bottom: 1px solid var(--color-border);

src/components/Menu/ReadonlyBar.vue

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,8 @@ export default defineComponent({
111111
top: 0;
112112
bottom: var(--default-grid-baseline);
113113
width: 100%;
114-
z-index: 10021; // above modal-header so menubar is always on top
114+
// Display above link previews and tables, but below dialogs and calendar event popover
115+
z-index: 4;
115116
background-color: var(--color-main-background-translucent);
116117
backdrop-filter: var(--background-blur);
117118
max-height: var(

0 commit comments

Comments
 (0)