Fix: Pb with Chrome

This commit is contained in:
Laurent Destailleur 2011-02-03 22:01:11 +00:00
parent 818d21e359
commit 3cc8b8e0a9
3 changed files with 9 additions and 12 deletions

View File

@ -137,10 +137,12 @@ class Form
* @param tooltipon 1=tooltip sur texte, 2=tooltip sur picto, 3=tooltip sur les 2 * @param tooltipon 1=tooltip sur texte, 2=tooltip sur picto, 3=tooltip sur les 2
* @param direction -1=Le picto est avant, 0=pas de picto, 1=le picto est apres * @param direction -1=Le picto est avant, 0=pas de picto, 1=le picto est apres
* @param img Code img du picto (use img_xxx() function to get it) * @param img Code img du picto (use img_xxx() function to get it)
* @param extracss Add a CSS style to td tags
* @param notable Do not include table and tr tags
* @return string Code html du tooltip (texte+picto) * @return string Code html du tooltip (texte+picto)
* @see Use function textwithpicto if you can. * @see Use function textwithpicto if you can.
*/ */
function textwithtooltip($text,$htmltext,$tooltipon=1,$direction=0,$img='',$extracss='') function textwithtooltip($text,$htmltext,$tooltipon=1,$direction=0,$img='',$extracss='',$notabs=0)
{ {
global $conf; global $conf;
@ -161,7 +163,7 @@ class Form
$paramfortooltip.=' class="classfortooltip'.$extracss.'" title="'.$htmltext.'"'; // Attribut to put on td tag to store tooltip $paramfortooltip.=' class="classfortooltip'.$extracss.'" title="'.$htmltext.'"'; // Attribut to put on td tag to store tooltip
$s=""; $s="";
$s.='<table class="nobordernopadding" summary=""><tr>'; if (empty($notabs)) $s.='<table class="nobordernopadding" summary=""><tr>';
if ($direction > 0) if ($direction > 0)
{ {
if ($text != '') if ($text != '')
@ -182,7 +184,7 @@ class Form
$s.=$text.'</td>'; $s.=$text.'</td>';
} }
} }
$s.='</tr></table>'; if (empty($notabs)) $s.='</tr></table>';
return $s; return $s;
} }

View File

@ -452,10 +452,9 @@ div.login_block table {
} }
div.login { div.login {
display: inline;
white-space:nowrap; white-space:nowrap;
padding: 0px 5px; padding: 8px 0px 0px 0px;
margin: 0px 0px 1px 0px; margin: 0px 0px 0px 8px;
font-weight: bold; font-weight: bold;
} }
div.login a { div.login a {

View File

@ -123,9 +123,6 @@ textarea.flat {
textarea:disabled { textarea:disabled {
background:#ddd; background:#ddd;
} }
input:disabled {
background:#ddd;
}
select.flat { select.flat {
background: #FDFDFD; background: #FDFDFD;
font-size: <?php print $fontsize ?>px; font-size: <?php print $fontsize ?>px;
@ -475,10 +472,9 @@ div.login_block table {
} }
div.login { div.login {
display: inline;
white-space:nowrap; white-space:nowrap;
padding: 0px 5px; padding: <?php echo ($conf->browser->phone?'0':'8')?>px 0px 0px 0px;
margin: 0px 0px 1px 0px; margin: 0px 0px 0px 8px;
font-weight: bold; font-weight: bold;
} }
div.login a { div.login a {