Fix more z-fighting issues

This commit is contained in:
Cohee 2024-03-19 02:15:01 +02:00
parent 7abb1d777d
commit 786241a87f

View File

@ -1364,7 +1364,7 @@ input[type="file"] {
display: none; display: none;
flex-direction: column; flex-direction: column;
box-shadow: 0 0 10px var(--black70a); box-shadow: 0 0 10px var(--black70a);
z-index: 3000; z-index: 4000;
left: 0; left: 0;
top: 0; top: 0;
margin: 0; margin: 0;
@ -1374,6 +1374,10 @@ input[type="file"] {
} }
#movingDivs > div { #movingDivs > div {
z-index: 4000;
}
#left-nav-panel {
z-index: 3000; z-index: 3000;
} }
@ -3365,6 +3369,10 @@ a {
} }
body:has(.drawer-content.maximized) #top-settings-holder:has(.drawer-content.openDrawer:not(.fillLeft):not(.fillRight)) {
z-index: 4005;
}
.drawer { .drawer {
align-items: center; align-items: center;
justify-content: center; justify-content: center;