Get rid of all occurences of viewtable and replace with tableview

This commit is contained in:
james 2009-09-10 04:40:18 +00:00
parent a2018771e7
commit f7bddf5beb
5 changed files with 5 additions and 41 deletions

View File

@ -203,7 +203,7 @@ include "xml.inc.php";
echo "<br />";
$error=false;
echo "<form method=\"post\" action=\"cwsfregister.php\">";
echo "<table class=\"viewtable\">";
echo "<table class=\"tableview\">";
echo "<tr><th>".i18n("Project Information")."</th>";
echo "<th>".i18n("Project Division / CWSF Project Division")."</th>";
echo "</tr>";

View File

@ -57,7 +57,7 @@ echo "Complete for {$config['FAIRYEAR']}: ".(($judgeinfo['complete']=="yes") ? "
echo "<br />";
echo "<h3>".i18n("Personal Info")."</h3>";
echo "<table class=\"viewtable\">\n";
echo "<table class=\"tableview\">\n";
echo "<tr>\n";
echo " <th align=\"right\">".i18n("First Name").": </th><td>{$judgeinfo['firstname']}</td>\n";
@ -137,7 +137,7 @@ echo "</table>";
echo "<hr />";
echo "<br />";
echo "<h3>Areas of Expertise</h3>";
echo "<table class=\"viewtable\">";
echo "<table class=\"tableview\">";
//grab the list of divisions, because the last fields of the table will be the sub-divisions
$q=mysql_query("SELECT * FROM projectdivisions WHERE year='{$config['FAIRYEAR']}' ORDER BY id");

View File

@ -45,7 +45,7 @@
send_popup_header(i18n("Student Information - %1 %2",array($studentinfo->firstname,$studentinfo->lastname)));
echo "<table class=\"viewtable\">\n";
echo "<table class=\"tableview\">\n";
echo "<tr>\n";
echo " <th>".i18n("First Name")."</th><td>$studentinfo->firstname</td>\n";

View File

@ -180,7 +180,7 @@ function neweditor()
if($show_year == 'current')
$where_year = "AND year={$config['FAIRYEAR']}";
echo "<table class=\"viewtable\">";
echo "<table class=\"tableview\">";
$querystr="SELECT
*
FROM

View File

@ -249,42 +249,6 @@ a.caution:hover {
color: #FF0000;
}
.viewtable {
border-collapse: collapse;
border-spacing: 0px;
border: 2px solid black;
margin: 0px;
padding: 0px;
margin-left: 30px;
margin-right: 30px;
}
.viewtable th {
border: 2px solid black;
background-color: #5C6F90;
padding: 5px;
margin: 0px;
font-size: 1.0em;
color: white;
font-weight: bold;
text-align: left;
}
.viewtable th a{
font-size: 1.1em;
color: white;
font-weight: bold;
}
.viewtable td {
border: 2px solid black;
margin: 0px;
padding: 4px;
}
.headertable td {
vertical-align: baseline;
}