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,7 +28,13 @@ $icon-font-path: '~@neos21/bootstrap3-glyphicons/assets/fonts/';
/* rules for dropdowns excepts when in button group, to avoid impacting the dropdown-toggle */
.dropdown:not(.btn-group) {
z-index: z(dropdown) !important;
&:not(.parent-entry) {
z-index: z(dropdown) !important;
}
&.parent-entry {
z-index: z(header) - 1;
}
}
.dropdown-menu {