From: Cyperghost Date: Thu, 25 Jan 2024 12:15:02 +0000 (+0100) Subject: Make the StyleChanger button clickable when the Edit button from a box overlaps it X-Git-Tag: 6.0.7_dev_1~2^2 X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=4901d53353c5f1260b2d61c10af83119f552a69c;p=GitHub%2FWoltLab%2FWCF.git Make the StyleChanger button clickable when the Edit button from a box overlaps it --- diff --git a/wcfsetup/install/files/style/layout/box.scss b/wcfsetup/install/files/style/layout/box.scss index 000d94b86a..6465bae5b7 100644 --- a/wcfsetup/install/files/style/layout/box.scss +++ b/wcfsetup/install/files/style/layout/box.scss @@ -837,6 +837,10 @@ color: var(--wcfFooterText); padding: 20px 0; + .layoutBoundary { + position: relative; + } + .icon { color: var(--wcfFooterText); } @@ -917,15 +921,16 @@ } .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; } }