mirror of
https://github.com/Hopiu/wagtail.git
synced 2026-05-11 16:53:10 +00:00
ensure subnav sits above footer bar
This commit is contained in:
parent
bb446527f4
commit
4891725fea
1 changed files with 11 additions and 6 deletions
|
|
@ -407,16 +407,21 @@ footer, .logo{
|
|||
}
|
||||
}
|
||||
.explorer {
|
||||
z-index:$explorer-z-index;
|
||||
z-index: $explorer-z-index;
|
||||
}
|
||||
.nav-submenu {
|
||||
z-index:$explorer-z-index;
|
||||
z-index: $explorer-z-index;
|
||||
}
|
||||
.nav-wrapper{
|
||||
z-index:auto; /* allows overspill of messages banner onto left menu, but also explorer to spill over main content */
|
||||
|
||||
// Allows overspill of messages banner onto left menu, but also explorer
|
||||
// to spill over main content
|
||||
.nav-wrapper {
|
||||
z-index: auto;
|
||||
}
|
||||
.nav-wrapper.submenu-active{
|
||||
z-index:5;
|
||||
|
||||
// footer is z-index: 100, so ensure the navigation sits on top of it.
|
||||
.nav-wrapper.submenu-active {
|
||||
z-index: 200;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue