Skip to content

Commit

Permalink
IE11: Fix nav flyouts being covered by #main
Browse files Browse the repository at this point in the history
fixes #3942
  • Loading branch information
flourish86 committed Sep 4, 2019
1 parent b7617bf commit 1778ec6
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
2 changes: 2 additions & 0 deletions public/css/icinga/layout-structure.less
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ html {
position: fixed;
left: 0;
top: 0;
// Prevent nav-level-2 flyovers from being covered by #main
z-index: 0;
}

#header {
Expand Down
4 changes: 4 additions & 0 deletions public/css/icinga/menu.less
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,10 @@
text-decoration: none;
}
}

.nav-level-2 {
z-index: 1;
}
}

#layout:not(.sidebar-collapsed) #menu .nav-item > a {
Expand Down

0 comments on commit 1778ec6

Please sign in to comment.