Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/components/Menu/MenuBar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,8 @@ export default {
top: 0;
bottom: 0;
width: 100%;
z-index: 10021; // above modal-header so menubar is always on top
// Display above link previews and tables, but below dialogs and calendar event popover
z-index: 4;
background-color: var(--color-main-background-translucent);
backdrop-filter: var(--background-blur);
border-bottom: 1px solid var(--color-border);
Expand Down
3 changes: 2 additions & 1 deletion src/components/Menu/ReadonlyBar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,8 @@ export default defineComponent({
top: 0;
bottom: var(--default-grid-baseline);
width: 100%;
z-index: 10021; // above modal-header so menubar is always on top
// Display above link previews and tables, but below dialogs and calendar event popover
z-index: 4;
background-color: var(--color-main-background-translucent);
backdrop-filter: var(--background-blur);
max-height: var(
Expand Down
Loading