xhtml compliance

This commit is contained in:
Garvin Hicking
2004-05-09 19:14:38 +00:00
parent 6aa1cf45c8
commit e83c817239
3 changed files with 13 additions and 5 deletions

View File

@@ -5,6 +5,10 @@ phpMyAdmin - Changelog
$Id$ $Id$
$Source$ $Source$
2004-05-09 Garvin Hicking <pma@supergarv.de>
* main.php, css/phpmyadmin.css.php: Corrected <form> position
to XHTML compliance. Introduced "nospace" class.
2004-05-05 Michal Čihař <michal@cihar.com> 2004-05-05 Michal Čihař <michal@cihar.com>
* lang/czech: Updated. * lang/czech: Updated.
* tbl_properties_operations.php: Fixed documentation link. * tbl_properties_operations.php: Fixed documentation link.

View File

@@ -456,9 +456,13 @@ td.activetab {
background-color: silver; background-color: silver;
} }
/* Textarea */ /* Textarea */
textarea { textarea {
overflow: auto; overflow: auto;
} }
.nospace {
margin: 0px;
padding: 0px;
}

View File

@@ -108,12 +108,12 @@ if (($server > 0) && isset($mode) && ($mode == 'reload')) {
if ($server == 0 || count($cfg['Servers']) > 1) { if ($server == 0 || count($cfg['Servers']) > 1) {
?> ?>
<!-- MySQL servers choice form --> <!-- MySQL servers choice form -->
<form method="post" action="index.php" target="_parent" class="nospace">
<table> <table>
<tr> <tr>
<th><?php echo $strServerChoice; ?></th> <th><?php echo $strServerChoice; ?></th>
</tr> </tr>
<tr>
<form method="post" action="index.php" target="_parent"><tr>
<td> <td>
<select name="server"> <select name="server">
<?php <?php
@@ -150,10 +150,10 @@ if ($server == 0 || count($cfg['Servers']) > 1) {
<input type="hidden" name="lang" value="<?php echo $lang; ?>" /> <input type="hidden" name="lang" value="<?php echo $lang; ?>" />
<input type="hidden" name="convcharset" value="<?php echo $convcharset; ?>" /> <input type="hidden" name="convcharset" value="<?php echo $convcharset; ?>" />
<input type="submit" value="<?php echo $strGo; ?>" /> <input type="submit" value="<?php echo $strGo; ?>" />
</form> </td> </td>
</tr> </tr>
</table> </table>
</form>
<br /> <br />
<?php <?php
} // end of the servers choice form } // end of the servers choice form