|
From: Benjamin C. <bc...@us...> - 2001-10-06 03:35:40
|
Update of /cvsroot/phpbt/phpbt/admin/templates/default
In directory usw-pr-cvs1:/tmp/cvs-serv31878/admin/templates/default
Modified Files:
oslist.html project-edit.html resolutionlist.html
severitylist.html statuslist.html userlist.html wrap.html
Log Message:
Almost there with css everywhere. Bug list mouseover and background color is still undone
Index: oslist.html
===================================================================
RCS file: /cvsroot/phpbt/phpbt/admin/templates/default/oslist.html,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- oslist.html 2001/08/17 14:45:54 1.2
+++ oslist.html 2001/10/06 03:35:37 1.3
@@ -11,7 +11,7 @@
<th><a href="{sortorderurl}">Sort Order</a></th>
</tr>
<!-- BEGIN row -->
- <tr bgcolor="{bgcolor}">
+ <tr class="{trclass}">
<td><a href="{me}?op=edit&id={osid}">{name}</a></td>
<td> {regex}</td>
<td align="center">{sortorder}</td>
@@ -49,4 +49,4 @@
</div>
</form>
</td>
-</table>
\ No newline at end of file
+</table>
Index: project-edit.html
===================================================================
RCS file: /cvsroot/phpbt/phpbt/admin/templates/default/project-edit.html,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- project-edit.html 2001/09/11 12:58:46 1.2
+++ project-edit.html 2001/10/06 03:35:37 1.3
@@ -102,7 +102,7 @@
<th width="60">Active</th>
</tr>
<!-- BEGIN verrow -->
- <tr bgcolor="{bgcolor}">
+ <tr class="{trclass}">
<td><a href="{me}?op=edit&id={projectid}&versionid={verid}">{vername}</a></td>
<td align="center">{verdate}</td>
<td align="center">{veractive}</td>
@@ -121,7 +121,7 @@
<th width="60">Active</th>
</tr>
<!-- BEGIN row -->
- <tr bgcolor="{bgcolor}">
+ <tr class="{trclass}">
<td><a href="{me}?op=edit&id={projectid}&componentid={compid}">{compname}</a></td>
<td align="center">{compdate}</td>
<td align="center">{compactive}</td>
Index: resolutionlist.html
===================================================================
RCS file: /cvsroot/phpbt/phpbt/admin/templates/default/resolutionlist.html,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- resolutionlist.html 2001/08/01 13:55:56 1.1
+++ resolutionlist.html 2001/10/06 03:35:37 1.2
@@ -11,7 +11,7 @@
<th><a href="{sortorderurl}">Sort Order</a></th>
</tr>
<!-- BEGIN row -->
- <tr bgcolor="{bgcolor}">
+ <tr class="{trclass}">
<td><a href="{me}?op=edit&id={resolutionid}">{name}</a></td>
<td> {description}</td>
<td align="center">{sortorder}</td>
Index: severitylist.html
===================================================================
RCS file: /cvsroot/phpbt/phpbt/admin/templates/default/severitylist.html,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- severitylist.html 2001/08/18 20:12:22 1.1
+++ severitylist.html 2001/10/06 03:35:37 1.2
@@ -5,13 +5,13 @@
<b> Status List</b>
<hr size="1">
<table border="0">
- <tr bgcolor="#eeeeee">
+ <tr>
<th><a href="{nameurl}">Name</a></th>
<th><a href="{descriptionurl}">Description</a></th>
<th><a href="{sortorderurl}">Sort Order</a></th>
</tr>
<!-- BEGIN row -->
- <tr bgcolor="{bgcolor}">
+ <tr trclass="{trclass}" bgcolor="{bgcolor}">
<td><a href="{me}?op=edit&id={severityid}">{name}</a></td>
<td> {description}</td>
<td align="center">{sortorder}</td>
Index: statuslist.html
===================================================================
RCS file: /cvsroot/phpbt/phpbt/admin/templates/default/statuslist.html,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- statuslist.html 2001/08/01 13:55:56 1.1
+++ statuslist.html 2001/10/06 03:35:37 1.2
@@ -11,7 +11,7 @@
<th><a href="{sortorderurl}">Sort Order</a></th>
</tr>
<!-- BEGIN row -->
- <tr bgcolor="{bgcolor}">
+ <tr class="{trclass}">
<td><a href="{me}?op=edit&id={statusid}">{name}</a></td>
<td> {description}</td>
<td align="center">{sortorder}</td>
Index: userlist.html
===================================================================
RCS file: /cvsroot/phpbt/phpbt/admin/templates/default/userlist.html,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- userlist.html 2001/09/03 20:27:28 1.3
+++ userlist.html 2001/10/06 03:35:37 1.4
@@ -13,7 +13,7 @@
<th bgcolor="{activecolor}"><a href="{activeurl}">Active</a></th>
</tr>
<!-- BEGIN row -->
- <tr bgcolor="{bgcolor}">
+ <tr class="{trclass}">
<td><a href="{me}?op=edit&id={userid}">{login}</a></td>
<td align="center">{name}</td>
<td align="center">{date}</td>
Index: wrap.html
===================================================================
RCS file: /cvsroot/phpbt/phpbt/admin/templates/default/wrap.html,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- wrap.html 2001/08/17 14:55:25 1.7
+++ wrap.html 2001/10/06 03:35:37 1.8
@@ -70,4 +70,4 @@
<!-- END adminnavblock -->
</body>
-</html>
\ No newline at end of file
+</html>
|