Reduce the `z-index` of the page overlay container
authorAlexander Ebert <ebert@woltlab.com>
Tue, 8 Aug 2023 16:55:05 +0000 (18:55 +0200)
committerAlexander Ebert <ebert@woltlab.com>
Tue, 8 Aug 2023 16:55:05 +0000 (18:55 +0200)
The previous value causes it to be in front of all other items at all times which is unintended.

wcfsetup/install/files/style/layout/layout.scss

index 845139e937df55ed9922d4682adc1fcaf42eb664..d504e577e556b612191b84432a431a03eef1d92f 100644 (file)
@@ -236,13 +236,10 @@ html[data-color-scheme="dark"] .sideBySide.templateDiff {
 }
 
 #pageOverlayContainer {
-       bottom: 0;
-       left: 0;
+       inset: 0;
        pointer-events: none;
        position: fixed;
-       right: 0;
-       top: 0;
-       z-index: 750;
+       z-index: 400;
 }
 
 #pageOverlayContainer > *:not(.dropdownMenuContainer) {