Make the StyleChanger button clickable when the Edit button from a box overlaps it
authorCyperghost <olaf_schmitz_1@t-online.de>
Thu, 25 Jan 2024 12:15:02 +0000 (13:15 +0100)
committerOlaf Braun <info@braun-development.de>
Thu, 7 Mar 2024 15:36:51 +0000 (16:36 +0100)
wcfsetup/install/files/style/layout/box.scss

index 000d94b86a2c744c27745a2596b27fa3f98d9fd9..6465bae5b760f3a43847539b6b1e0358f6289d7d 100644 (file)
        color: var(--wcfFooterText);
        padding: 20px 0;
 
+       .layoutBoundary {
+               position: relative;
+       }
+
        .icon {
                color: var(--wcfFooterText);
        }
 }
 
 .styleChanger {
-       float: right;
-       padding-left: 20px;
+       position: absolute;
+       right: 20px;
+       z-index: 1;
 
        button {
                color: var(--wcfFooterLink);
        }
 
        @include screen-md-down {
-               padding: 10px 0 10px 20px;
+               right: 10px;
        }
 }