From 341b1d7ee8e39be6e3c6f891299514465af60ce2 Mon Sep 17 00:00:00 2001 From: cajus Date: Sat, 1 May 2010 14:57:15 +0000 Subject: [PATCH] Made error message more visible. Width to 100% git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@18008 594d385d-05f5-0310-b6e9-bd551577e9d8 --- gosa-core/html/themes/default/style.css | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/gosa-core/html/themes/default/style.css b/gosa-core/html/themes/default/style.css index e7e3a1d7a..aa06d7f38 100644 --- a/gosa-core/html/themes/default/style.css +++ b/gosa-core/html/themes/default/style.css @@ -111,6 +111,10 @@ h1, h3 { /* Error collector */ +#errorbox { + width:100%; +} + .error-collector { border-bottom:1px solid black; width:100%; @@ -118,8 +122,18 @@ h1, h3 { padding:2px; height:32px; background-color:#FFA; + -webkit-animation-name:error-collector; + -webkit-animation-duration:0.5s; + -webkit-animation-iteration-count:2; + -webkit-animation-direction:alternate } +@-webkit-keyframes error-collector{ + from{background-color:#FFA;} + to{background-color:red;} +} + + .error-collector span { font-size:12px; font-weight:bold; -- 2.30.2