Restore z-index: auto for toolbox and sidebar elements. Fixes #411

Revamped sidebar design sets non-auto z-index for toolbox and sidebar
items. We need to restore them to auto for correct (in our perspective)
layering.
This commit is contained in:
MrOtherGuy
2024-10-02 06:10:12 +03:00
parent 5051132cf3
commit 69e53df519
2 changed files with 14 additions and 1 deletions

View File

@@ -23,6 +23,13 @@ See the above repository for updates as well as full license text. */
}
#titlebar{ position: relative; z-index: 3 }
#navigator-toolbox,
#sidebar-box,
#sidebar-main,
#sidebar-splitter,
#tabbrowser-tabbox{
z-index: auto !important;
}
/* Show when toolbox is focused, like when urlbar has received focus */
#navigator-toolbox:focus-within > .browser-toolbar{
transform: translateY(0);