From: hickert Date: Fri, 30 Apr 2010 07:16:49 +0000 (+0000) Subject: Added 'warning' and 'error' classes for rows. X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=da4c02f962f30d2aafefc5db4ca681c65734997a;p=gosa.git Added 'warning' and 'error' classes for rows. git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@17986 594d385d-05f5-0310-b6e9-bd551577e9d8 --- diff --git a/gosa-core/html/themes/default/style.css b/gosa-core/html/themes/default/style.css index 944babcd2..3f36d5b5d 100644 --- a/gosa-core/html/themes/default/style.css +++ b/gosa-core/html/themes/default/style.css @@ -808,6 +808,22 @@ div.listContainer { background-color:#F5F5AA; } +.listScrollContent tr.entry-error:nth-child(odd) { + background-color:#FFA; +} + +.listScrollContent tr.entry-error:nth-child(even) { + background-color:#F5F5AA; +} + +.listScrollContent tr.entry-warning:nth-child(odd) { + background-color:#FFA; +} + +.listScrollContent tr.entry-warning:nth-child(even) { + background-color:#F5F5AA; +} + .listScrollContent tr:last-child { background-color:#FFF; }