Code

Updated dilist, to use a non highlighting row/col style for last empty row
authorhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Tue, 4 Apr 2006 05:23:39 +0000 (05:23 +0000)
committerhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Tue, 4 Apr 2006 05:23:39 +0000 (05:23 +0000)
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@2960 594d385d-05f5-0310-b6e9-bd551577e9d8

include/class_divlist.inc

index 461d3f92d8e53b07f6e80edf517766d825d20b36..d8ee0fb80bb7427bac07a0b60d2e9695e9301393 100644 (file)
@@ -275,9 +275,9 @@ class divlist {
         $fill= "";
         for ($i= 1; $i <= $this->cols; $i++){
           if ($i == $this->cols){
-           $fill.= "<td class='list1' onmouseover='highlight;' style='height:100%;border-right:0px;'>&nbsp;</td>";
+           $fill.= "<td class='list1nohighlight' style='height:100%;border-right:0px;'>&nbsp;</td>";
           } else {
-           $fill.= "<td class='list1' onmouseover='highlight;' style='height:100%;'>&nbsp;</td>";
+           $fill.= "<td class='list1nohighlight' style='height:100%;'>&nbsp;</td>";
           }
         }
         $s_return.="\n<tr>$fill";