Fix admin menu z-index for dropdowns compared to header

This commit is contained in:
Rigel Kent 2020-03-08 18:02:14 +01:00
parent 758f0d19f2
commit 26ede95e57
No known key found for this signature in database
GPG Key ID: 5E53E96A494E452F
1 changed files with 7 additions and 1 deletions

View File

@ -28,9 +28,15 @@ $icon-font-path: '~@neos21/bootstrap3-glyphicons/assets/fonts/';
/* rules for dropdowns excepts when in button group, to avoid impacting the dropdown-toggle */ /* rules for dropdowns excepts when in button group, to avoid impacting the dropdown-toggle */
.dropdown:not(.btn-group) { .dropdown:not(.btn-group) {
&:not(.parent-entry) {
z-index: z(dropdown) !important; z-index: z(dropdown) !important;
} }
&.parent-entry {
z-index: z(header) - 1;
}
}
.dropdown-menu { .dropdown-menu {
z-index: z(dropdown) !important; z-index: z(dropdown) !important;
border-radius: 3px; border-radius: 3px;