From: Alexander Ebert Date: Mon, 18 Jul 2022 16:25:27 +0000 (+0200) Subject: Fix the color of the search icon in the mobile header X-Git-Tag: 5.5.3_dev_2~7 X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=6255b9d9d4db89147470ca476f31cc47497afd88;p=GitHub%2FWoltLab%2FWCF.git Fix the color of the search icon in the mobile header See https://www.woltlab.com/community/thread/296499-mobiles-men%C3%BC-mit-falschen-farbzuweisungen/ --- diff --git a/wcfsetup/install/files/style/layout/pageHeader.scss b/wcfsetup/install/files/style/layout/pageHeader.scss index fbe9ec8e06..a946cbd84c 100644 --- a/wcfsetup/install/files/style/layout/pageHeader.scss +++ b/wcfsetup/install/files/style/layout/pageHeader.scss @@ -494,7 +494,12 @@ .pageHeaderSearchMobile { grid-area: search; + .icon::before { + color: $wcfHeaderLink; + } + &[aria-expanded="true"] .icon::before { + color: $wcfHeaderLinkActive; content: $fa-var-times; } }