support css
This commit is contained in:
parent
bae5f63ded
commit
7cadc041df
@ -69,7 +69,7 @@ if ($action == 'create')
|
||||
print "<form action=\"propal.php?socidp=$socidp\" method=\"post\">";
|
||||
print "<input type=\"hidden\" name=\"action\" value=\"add\">";
|
||||
|
||||
print '<table border="1" cellspacing="0" cellpadding="3" width="100%">';
|
||||
print '<table class=tablefsoc border="1" cellspacing="0" cellpadding="3" width="100%">';
|
||||
|
||||
print '<tr><td>Société</td><td><a href="fiche.php?socid='.$socidp.'">'.$objsoc->nom.'</a></td>';
|
||||
|
||||
|
||||
@ -168,7 +168,7 @@ if ($socid > 0) {
|
||||
|
||||
print "<table width=\"100%\" border=0><tr>\n";
|
||||
print "<td valign=\"top\">";
|
||||
print "<table cellspacing=\"0\" border=\"1\" width=\"100%\">";
|
||||
print "<table class=tablefsoc cellspacing=\"0\" border=\"1\" width=\"100%\">";
|
||||
|
||||
print "<tr><td>Type</td><td> $objsoc->typent</td><td>Effectif</td><td>$objsoc->effectif</td></tr>";
|
||||
print "<tr><td>Tel</td><td> $objsoc->tel </td><td>fax</td><td>$objsoc->fax </td></tr>";
|
||||
@ -270,7 +270,7 @@ if ($socid > 0) {
|
||||
*
|
||||
*
|
||||
*/
|
||||
print '<table border="1" cellspadding="3" cellspacing="0" width="100%"><tr>';
|
||||
print '<table class=tableab border="1" cellspadding="3" cellspacing="0" width="100%"><tr>';
|
||||
print '<td align="center" width="20%">-</td>';
|
||||
if (defined("MAIN_MODULE_PROPALE") && MAIN_MODULE_PROPALE && $user->rights->propale->creer)
|
||||
{
|
||||
|
||||
@ -117,7 +117,7 @@ if ($socid > 0)
|
||||
print $db->error();
|
||||
}
|
||||
|
||||
print "<P><table width=\"100%\" cellspacing=0 border=1 cellpadding=2>";
|
||||
print "<P><table class=tablefuser width=\"100%\" cellspacing=0 border=1 cellpadding=2>";
|
||||
|
||||
print "<tr><td><b>Prénom Nom</b></td>";
|
||||
print "<td><b>Poste</b></td><td><b>Tel</b></td>";
|
||||
@ -168,7 +168,7 @@ if ($socid > 0)
|
||||
{
|
||||
print "<form method=\"post\" action=\"people.php?socid=$socid\">";
|
||||
print "<input type=\"hidden\" name=\"action\" value=\"add\">";
|
||||
print "<table border=0>";
|
||||
print "<table class=tablefuser border=0>";
|
||||
print "<tr><td>Nom</td><td><input name=\"name\" type=\"text\" size=\"20\" maxlength=\"80\"></td>";
|
||||
print "<td>Prenom</td><td><input name=\"firstname\" type=\"text\" size=\"15\" maxlength=\"80\"></td></tr>";
|
||||
print "<tr><td>Poste</td><td colspan=\"3\"><input name=\"poste\" type=\"text\" size=\"50\" maxlength=\"80\"></td></tr>";
|
||||
@ -199,7 +199,7 @@ if ($socid > 0)
|
||||
print "<form method=\"post\" action=\"people.php?socid=$socid\">";
|
||||
print '<input type="hidden" name="action" value="update">';
|
||||
print "<input type=\"hidden\" name=\"contactid\" value=\"$contactid\">";
|
||||
print '<br><table border="1" cellpadding="4" cellspacing="0">';
|
||||
print '<br><table class=tablefuser border="1" cellpadding="4" cellspacing="0">';
|
||||
print "<tr><td>Nom</td><td><input name=\"name\" type=\"text\" size=\"20\" maxlength=\"80\" value=\"$obj->name\"></td>";
|
||||
print "<td>Prenom</td><td><input name=\"firstname\" type=\"text\" size=\"15\" maxlength=\"80\" value=\"$obj->firstname\"></td></tr>";
|
||||
print "<tr><td>Poste</td><td colspan=\"3\"><input name=\"poste\" type=\"text\" size=\"50\" maxlength=\"80\" value=\"$obj->poste\"></td></tr>";
|
||||
|
||||
@ -192,6 +192,29 @@ tr.impair {
|
||||
border-left: 1px dashed #666666;
|
||||
}
|
||||
|
||||
.tablefuser {
|
||||
background: #444444;
|
||||
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;
|
||||
}
|
||||
|
||||
.tablefsoc {
|
||||
background: #444444;
|
||||
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;
|
||||
}
|
||||
|
||||
|
||||
.tableab {
|
||||
background: #444444;
|
||||
font-family: Helvetica, Verdana;
|
||||
@ -203,16 +226,7 @@ tr.impair {
|
||||
border-left: 1px dashed #666666;
|
||||
}
|
||||
|
||||
.tablefuser {
|
||||
background: #444444;
|
||||
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;
|
||||
}
|
||||
|
||||
|
||||
|
||||
/*
|
||||
|
||||
Loading…
Reference in New Issue
Block a user