[php-todo-cvs] src index.php,1.2,1.3 style.css,1.2,1.3
Status: Pre-Alpha
Brought to you by:
mnordstr
|
From: <mno...@us...> - 2002-06-20 16:42:13
|
Update of /cvsroot/php-todo/src
In directory usw-pr-cvs1:/tmp/cvs-serv31807
Modified Files:
index.php style.css
Log Message:
css style bugs
Index: index.php
===================================================================
RCS file: /cvsroot/php-todo/src/index.php,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** index.php 20 Jun 2002 16:21:21 -0000 1.2
--- index.php 20 Jun 2002 16:42:09 -0000 1.3
***************
*** 294,305 ****
print "\t\t\t<tr class='list$list'>\n\t\t\t\t<td class='list1' style='width: 30px'> </td>\n\t\t\t\t" .
! "<td style='width: 75px; vertical-align: top'><a href='" . $file . "?edit=" . $row['todo_id'] .
"'><img src='img/edit.gif' border='0' alt='Edit' title='Edit' /></a> " .
"<a href='" . $file . "?delete=" . $row['todo_id'] .
"'><img src='img/delete.gif' border='0' alt='Delete' title='Delete' /></a></td>\n\t\t\t\t" .
! "<td class='listLastTD'>" . $row['todo_short'] . "</td>\n\t\t\t</tr>\n\t\t\t";
print "<tr class='list$list'>\n\t\t\t\t<td colspan='2' class='list1' style='text-align: right'></td>" .
! "\n\t\t\t\t<td class='listLastTD'>" .
$desc . "</td>\n\t\t\t</tr>\n\n";
}
--- 294,305 ----
print "\t\t\t<tr class='list$list'>\n\t\t\t\t<td class='list1' style='width: 30px'> </td>\n\t\t\t\t" .
! "<td class='list$list' style='width: 75px; vertical-align: top'><a href='" . $file . "?edit=" . $row['todo_id'] .
"'><img src='img/edit.gif' border='0' alt='Edit' title='Edit' /></a> " .
"<a href='" . $file . "?delete=" . $row['todo_id'] .
"'><img src='img/delete.gif' border='0' alt='Delete' title='Delete' /></a></td>\n\t\t\t\t" .
! "<td class='listLastTD$list'>" . $row['todo_short'] . "</td>\n\t\t\t</tr>\n\t\t\t";
print "<tr class='list$list'>\n\t\t\t\t<td colspan='2' class='list1' style='text-align: right'></td>" .
! "\n\t\t\t\t<td class='listLastTD$list'>" .
$desc . "</td>\n\t\t\t</tr>\n\n";
}
Index: style.css
===================================================================
RCS file: /cvsroot/php-todo/src/style.css,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** style.css 20 Jun 2002 16:21:22 -0000 1.2
--- style.css 20 Jun 2002 16:42:09 -0000 1.3
***************
*** 20,24 ****
a
{
- background-color: #f5f8ff;
font-family: Verdana, Helvetica, Arial, sans-serif;
font-size: 11pt;
--- 20,23 ----
***************
*** 30,34 ****
input, select, textarea
{
! background-color: #f5f8ff;
font-family: Verdana, Helvetica, Arial, sans-serif;
font-size: 9pt;
--- 29,33 ----
input, select, textarea
{
! background-color: #ffffff;
font-family: Verdana, Helvetica, Arial, sans-serif;
font-size: 9pt;
***************
*** 116,121 ****
}
! .listLastTD
{
width: 495px;
}
--- 115,130 ----
}
! .listLastTD1
{
width: 495px;
+ background-color: #f5f8ff;
+ color: #002674;
}
+
+ .listLastTD2
+ {
+ width: 495px;
+ background-color: #eef6ff;
+ color: #002674;
+ }
+
|