From: Alexander Ebert Date: Wed, 4 Feb 2015 14:00:42 +0000 (+0100) Subject: Fixed message tabmenu's sub-tabmenu on mobile devices X-Git-Tag: 2.1.0_RC_1~79^2~6 X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=cc1a860c5c0814b823b6fcee7611dc03b11ee311;p=GitHub%2FWoltLab%2FWCF.git Fixed message tabmenu's sub-tabmenu on mobile devices --- diff --git a/wcfsetup/install/files/style/redactor.less b/wcfsetup/install/files/style/redactor.less index bdc6629a97..139926362d 100644 --- a/wcfsetup/install/files/style/redactor.less +++ b/wcfsetup/install/files/style/redactor.less @@ -478,13 +478,19 @@ } @media only screen and (max-width: 800px) { - .messageTabMenu > nav > ul > li:not(.active) > a { - > span.icon { - display: block; + .messageTabMenu { + > nav > ul > li:not(.active) > a { + > span.icon { + display: block; + } + + > span:not(.icon) { + display: none; + } } - > span:not(.icon) { - display: none; + > div > nav { + margin: (@wcfGapTiny - @wcfGapSmall) -@wcfGapSmall @wcfGapSmall -@wcfGapSmall; } } }