From: Alexander Ebert Date: Thu, 31 May 2012 21:40:01 +0000 (+0200) Subject: Added CSS for disabled / deleted threads X-Git-Tag: 2.0.0_Beta_1~1089 X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=6b627addddf9af05db1b338583ebc10aa6bb7a83;p=GitHub%2FWoltLab%2FWCF.git Added CSS for disabled / deleted threads --- diff --git a/wcfsetup/install/files/style/wbb.less b/wcfsetup/install/files/style/wbb.less index 211cd8151b..0763cf6c64 100644 --- a/wcfsetup/install/files/style/wbb.less +++ b/wcfsetup/install/files/style/wbb.less @@ -165,6 +165,30 @@ /* ############## Thread List ############## */ .wbbThreadList { + /* TODO: keep these colors? */ + .wbbThreadDeleted:not(:hover) { + td { + background-color: @wcfErrorBackgroundColor; + color: @wcfErrorColor; + + a { + color: @wcfErrorColor; + } + } + } + + /* TODO: keep these colors? */ + .wbbThreadDisabled:not(.wbbThreadDeleted):not(:hover) { + td { + background-color: @wcfSuccessBackgroundColor; + color: @wcfSuccessColor; + + a { + color: @wcfSuccessColor; + } + } + } + .wbbLastPost h2 { color: @wcfDimmedColor; font-size: @wcfSmallFontSize;