Code

Fixed height of lists
authorcajus <cajus@594d385d-05f5-0310-b6e9-bd551577e9d8>
Wed, 2 Nov 2005 06:58:38 +0000 (06:58 +0000)
committercajus <cajus@594d385d-05f5-0310-b6e9-bd551577e9d8>
Wed, 2 Nov 2005 06:58:38 +0000 (06:58 +0000)
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@1782 594d385d-05f5-0310-b6e9-bd551577e9d8

html/themes/default/style.css
include/class_divlist.inc

index 8ffe63b5e7cb01774b9641f2afa9f54ab21848a3..e6c74988b89e7c40e3bdadcefe5cd498cdad9258 100644 (file)
@@ -30,7 +30,7 @@ tbody.scrollcontent {
        overflow:auto;
        overflow:-moz-scrollbars-vertical;
        overflow-x:hidden;
-       max-height:480px;
+       height:480px;
 }
 
 body
index e7e7417577007c38224de3bf252150a3777dbb4c..65fc872f2be9b03edede93cf0a37b1f40db2f6f7 100644 (file)
@@ -257,7 +257,15 @@ class divlist {
                }
     }
          
-    return $s_return;
+    $fill= "";
+    for ($i= 1; $i <= $this->cols; $i++){
+      if ($i == $this->cols){
+        $fill.= "<td class='list1' style='height:100%;border-right:0px'>&nbsp;</td>";
+      } else {
+        $fill.= "<td class='list1' style='height:100%'>&nbsp;</td>";
+      }
+    }
+    return $s_return."\n<tr>$fill</tr>";
   }
 }
 // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler: