Code

Some fixes
authorhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Tue, 20 Mar 2007 14:21:42 +0000 (14:21 +0000)
committerhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Tue, 20 Mar 2007 14:21:42 +0000 (14:21 +0000)
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@5840 594d385d-05f5-0310-b6e9-bd551577e9d8

html/themes/default/style.css
include/sieve/class_sieveElement_If.inc

index 841d2a002967f2716143e2c28e900b22d2e5f07e..4124aa3e217132c8210b3c5dc642869f3a6d96ae 100644 (file)
@@ -1362,10 +1362,10 @@ textarea.sieve_vacation_input {
 
 table.sieve_allof_container {
     width:100%;
-    margin: 0px;
     border-spacing: 0px ;
+    margin: 0px;
     padding:0px;
-       border: solid 2px #CCCCCC;
+       border: solid 1px #999999;
 }
 
 /* Container */
@@ -1373,10 +1373,14 @@ td.sieve_allof_left {
        text-align:center;
        vertical-align: middle;
        width:35px;
-       background-color: #BDBDBD;
+       background-color: #CCCCCC;
        border: solid 0px #EEEEEE
 }
 
+/* Container */
+td.sieve_allof_right {
+       background-color:#BDBDBD ; 
+}
 
 /*************
  * Sieve anyof 
@@ -1395,19 +1399,32 @@ td.sieve_anyof_left {
        text-align:center;
        vertical-align: middle;
        width:35px;
-       background-color: #BDBDBD;
+       background-color: #CCCCCC;
        border: solid 0px #EEEEEE
 }
 
+/* Container */
+td.sieve_anyof_right {
+       background-color:#BDBDBD ; 
+       border: solid 1px #AAAAAA;
+}
+
 /*************
  * Sieve Test Cases  
  *************/
 
-table.sieve_test_case {
+table.sieve_test_container {
        width:100%;
+       background-color:#EEEEEE;
        margin: 0px;
        border-spacing: 0px ;
        padding:0px;
+       border: solid 1px #AAAAAA;
 }
 
-
+table.sieve_test_case {
+       width:100%;
+       margin: 0px;
+       border-spacing: 0px ;
+       padding:0px;
+}
index 8431dce457c2b524e2e32c662d9ff230831dbf28..090880d6a1613d6172593d79ddea1244cc8b0a08 100644 (file)
@@ -114,7 +114,7 @@ class sieve_if
          *******************/
 
         case "true" :
-        case "fasle" : 
+        case "false" : 
         {
           /* Can't fail anyway */
           break;
@@ -127,6 +127,7 @@ class sieve_if
         default: 
         {
           if(isset($data['LastError']) && !empty($data['LastError'])){
+            print_a(array($data));
             $ret[] = $data['LastError'];
           }
         }
@@ -448,7 +449,7 @@ class sieve_if
         $tmp= array( 
             "Inverse"    => FALSE,
             "Match_type" => ":over",
-            "Value_List" => array(1,"M"));
+            "Value_List" => array("1M"));
 
         $tmp['LastError'] = "";
         $data[$type] = $tmp;