Beautified display of tables under Mozilla & NS6+ thanks to a fix from Detlev Stender

This commit is contained in:
Loïc Chapeaux
2001-11-23 19:13:07 +00:00
parent 05fefd4211
commit dc91bc219a
11 changed files with 238 additions and 202 deletions

View File

@@ -336,10 +336,11 @@ else if (!defined('PMA_IDX_INCLUDED')
} else {
$sub_part = '';
}
$bgcolor = (($row_no % 2) ? $cfgBgcolorOne : $cfgBgcolorTwo);
echo "\n";
?>
<tr bgcolor="<?php echo (($row_no % 2) ? $cfgBgcolorOne : $cfgBgcolorTwo); ?>">
<td>
<tr>
<td bgcolor="<?php echo $bgcolor; ?>">
<select name="column[]">
<option value="--ignore--"<?php if ('--ignore--' == $selected) echo ' selected="selected"'; ?>>
-- <?php echo $strIgnore; ?> --</option>
@@ -357,7 +358,7 @@ else if (!defined('PMA_IDX_INCLUDED')
?>
</select>
</td>
<td>
<td bgcolor="<?php echo $bgcolor; ?>">
<input type="text" size="5" name="sub_part[]"<?php echo $sub_part; ?> />
</td>
</tr>