From: Marcel Werk Date: Thu, 10 Mar 2016 23:55:30 +0000 (+0100) Subject: Added footer menu styling X-Git-Tag: 3.0.0_Beta_1~2030^2~34 X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=948d705160ac48f7580438541472ccb8f5ba3f9d;p=GitHub%2FWoltLab%2FWCF.git Added footer menu styling --- diff --git a/wcfsetup/install/files/style/layout/box.scss b/wcfsetup/install/files/style/layout/box.scss index bacff2cc13..1225c6db75 100644 --- a/wcfsetup/install/files/style/layout/box.scss +++ b/wcfsetup/install/files/style/layout/box.scss @@ -390,4 +390,38 @@ float: left; width: 20%; } + + .boxMenu { + display: flex; + flex-wrap: wrap; + margin-bottom: -20px; + margin-left: -10px; + margin-right: -10px; + + .boxMenuLink { + display: inline-block; + } + + > li { + flex: 0 0 25%; + margin-bottom: 20px; + padding-left: 10px; + padding-right: 10px; + + &.boxMenuHasChildren { + > .boxMenuLink { + @extend .wcfFontHeadline; + + margin-bottom: 10px; + } + + > ol { + a { + // use text color instead + color: $wcfFooterText; + } + } + } + } + } }