IE11: Fix nav flyouts being covered by #main

fixes #3942
This commit is contained in:
Florian Strohmaier 2019-09-04 12:26:37 +02:00
parent b7617bf81b
commit 1778ec673b
2 changed files with 6 additions and 0 deletions

View File

@ -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 {

View File

@ -46,6 +46,10 @@
text-decoration: none;
}
}
.nav-level-2 {
z-index: 1;
}
}
#layout:not(.sidebar-collapsed) #menu .nav-item > a {