summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: d1e8b24)
raw | patch | inline | side by side (parent: d1e8b24)
author | cajus <cajus@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Wed, 2 Nov 2005 06:58:38 +0000 (06:58 +0000) | ||
committer | cajus <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 | patch | blob | history | |
include/class_divlist.inc | patch | blob | history |
index 8ffe63b5e7cb01774b9641f2afa9f54ab21848a3..e6c74988b89e7c40e3bdadcefe5cd498cdad9258 100644 (file)
overflow:auto;
overflow:-moz-scrollbars-vertical;
overflow-x:hidden;
- max-height:480px;
+ height:480px;
}
body
index e7e7417577007c38224de3bf252150a3777dbb4c..65fc872f2be9b03edede93cf0a37b1f40db2f6f7 100644 (file)
}
}
- 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'> </td>";
+ } else {
+ $fill.= "<td class='list1' style='height:100%'> </td>";
+ }
+ }
+ return $s_return."\n<tr>$fill</tr>";
}
}
// vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler: