Code

Made error message more visible. Width to 100%
authorcajus <cajus@594d385d-05f5-0310-b6e9-bd551577e9d8>
Sat, 1 May 2010 14:57:15 +0000 (14:57 +0000)
committercajus <cajus@594d385d-05f5-0310-b6e9-bd551577e9d8>
Sat, 1 May 2010 14:57:15 +0000 (14:57 +0000)
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@18008 594d385d-05f5-0310-b6e9-bd551577e9d8

gosa-core/html/themes/default/style.css

index e7e3a1d7a4b36c1ca7d68c50ef17ca7fd5c5d851..aa06d7f380673ad230c658773966c03feaad357a 100644 (file)
@@ -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;