From: Marcel Werk Date: Thu, 10 Mar 2016 23:54:37 +0000 (+0100) Subject: Fixed margins in page footer X-Git-Tag: 3.0.0_Beta_1~2030^2~36 X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=85ae61a933105450b4842dbc4158644b6acd5f03;p=GitHub%2FWoltLab%2FWCF.git Fixed margins in page footer --- diff --git a/wcfsetup/install/files/acp/templates/pageFooter.tpl b/wcfsetup/install/files/acp/templates/pageFooter.tpl index 1ab6362e19..a577548f45 100644 --- a/wcfsetup/install/files/acp/templates/pageFooter.tpl +++ b/wcfsetup/install/files/acp/templates/pageFooter.tpl @@ -5,7 +5,7 @@ {if ENABLE_BENCHMARK}{include file='benchmark'}{/if} - + diff --git a/wcfsetup/install/files/style/layout/pageFooter.scss b/wcfsetup/install/files/style/layout/pageFooter.scss index 889b04beab..c93e740ca1 100644 --- a/wcfsetup/install/files/style/layout/pageFooter.scss +++ b/wcfsetup/install/files/style/layout/pageFooter.scss @@ -14,21 +14,21 @@ } } - // copyright and benchmark link styling - // benchmark link styling - .benchmark, - .copyright { - &:not(:first-child) { - margin-top: 20px; + .footerContent { + > div { + &:not(:first-child) { + margin-top: 20px; + } + + // copyright and benchmark link styling + a { + // use text color instead + color: $wcfFooterText; + } } - a { - // use text color instead - color: $wcfFooterText; + &:not(:first-child) > div:first-child { + margin-top: 40px; } } - - .footerContent:first-child > div:first-child { - margin-top: 0; - } }