From 01f44ef311fd2188237ddf7f9f0e6aeb0f944898 Mon Sep 17 00:00:00 2001 From: Ralf Becker Date: Thu, 7 Jun 2007 10:29:56 +0000 Subject: [PATCH] "fix for konq, if multiselect is in a right-alinged table-cell or box" --- phpgwapi/inc/class.html.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpgwapi/inc/class.html.inc.php b/phpgwapi/inc/class.html.inc.php index 692080545f..e71d0f6e98 100644 --- a/phpgwapi/inc/class.html.inc.php +++ b/phpgwapi/inc/class.html.inc.php @@ -326,7 +326,7 @@ class html if ($style && substr($style,-1) != ';') $style .= '; '; if (strpos($style,'height')===false) $style .= 'height: '.(1.7*$multiple).'em; '; if (strpos($style,'width')===false) $style .= 'width: '.(4+$max_len*($max_len < 15 ? 0.65 : 0.55)).'em; '; - $style .= 'background-color: white; overflow: auto; border: lightgray 2px inset;'; + $style .= 'background-color: white; overflow: auto; border: lightgray 2px inset; text-align: left;'; return $this->div($html,$options,'',$style); }