Skip to content

Commit

Permalink
fix: dropdown menus show over the sidebar
Browse files Browse the repository at this point in the history
Moved the sidebar to the same z-level as the header, because layout
dictates that it sits above it anyway.

So could move the dropdown menus up to above the sidebar.
  • Loading branch information
pomegranited committed Oct 25, 2024
1 parent ea1d8f2 commit 6373fce
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/library-authoring/LibraryAuthoringPage.scss
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
}

.library-authoring-sidebar {
z-index: 1001; // to appear over header
z-index: 1000; // same as header
flex: 450px 0 0;
position: sticky;
top: 0;
Expand All @@ -21,6 +21,10 @@
overflow-y: auto;
}

.dropdown-menu {
z-index: 1001; // over the sidebar
}

// Reduce breadcrumb bottom margin
ol.list-inline {
margin-bottom: 0;
Expand Down

0 comments on commit 6373fce

Please sign in to comment.