1
0
Fork 0

Fix dropdown z-index

This commit is contained in:
Chocobozzz 2022-06-20 11:39:54 +02:00
parent d34012602b
commit 73114c103a
No known key found for this signature in database
GPG Key ID: 583A612D890159BE
2 changed files with 5 additions and 5 deletions

View File

@ -175,10 +175,10 @@ $zindex: (
popover : 13000,
tooltip : 14000,
loadbar : 15000,
dropdown : 17000,
help-popover : 17000,
privacymsg : 17500,
header : 17500,
help-popover : 17600,
dropdown : 17600,
modal : 19000,
hotkeys : 19000,
notification : 20000

View File

@ -13,9 +13,9 @@ ngx-loading-bar {
z-index: z(header) + 1 !important;
}
/* rules for dropdowns excepts when in button group, to avoid impacting the dropdown-toggle */
.dropdown,
.dropup {
// Dropdown added to body, override default z-index
body > .dropdown,
body > .dropup {
z-index: z(dropdown) !important;
}