Added CSS for disabled / deleted threads
authorAlexander Ebert <ebert@woltlab.com>
Thu, 31 May 2012 21:40:01 +0000 (23:40 +0200)
committerAlexander Ebert <ebert@woltlab.com>
Thu, 31 May 2012 21:40:01 +0000 (23:40 +0200)
wcfsetup/install/files/style/wbb.less

index 211cd8151ba26ec6b2f96c7fde319439d39a5450..0763cf6c642c84f72efaa4f8dd602a727ad7cc1e 100644 (file)
 
 /* ############## 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;