alignement des champs du formulaire

This commit is contained in:
beedauchon 2003-09-16 17:44:59 +00:00
parent be79d72b85
commit 500428c54f
2 changed files with 10 additions and 7 deletions

View File

@ -110,11 +110,11 @@ else
*
*
*/
print '<tr><form method="post" action="index.php">';
print '<tr class="form"><form method="post" action="index.php">';
print '<input type="hidden" name="action" value="add">';
print '<td><input type="text" size="8" name="date"></td>';
print '<td colspan="2"><select name="type">';
print '<td colspan="2" align="right"><select name="type">';
$sql = "SELECT c.id, c.libelle as nom FROM c_chargesociales as c";
@ -134,7 +134,7 @@ if ( $db->query($sql) )
}
print '</select>';
print '<input type="text" size="20" name="libelle"></td>';
print '<input type="text" size="20" name="libelle"></td><td></td>';
print '<td align="right"><input type="text" size="6" name="amount"></td>';
print '<tr><td><input type="submit"></form></td>';

View File

@ -264,10 +264,13 @@ tr.total {
font-family: Helvetica, Verdana;
font-size: 1.0em;
color: #eeeeee;
border-top: 1px dashed #555555;
border-right: 1px dashed #888888;
border-bottom: 1px dashed #777777;
border-left: 1px dashed #666666;
}
tr.form {
background: #444444;
font-family: Helvetica, Verdana;
font-size: 1.0em;
color: #eeeeee;
}