? more_css_styles.patch
? html/codestriker-bluish.css
Index: html/codestriker.css
===================================================================
RCS file: /cvsroot/codestriker/codestriker/html/codestriker.css,v
retrieving revision 1.13
diff -u -r1.13 codestriker.css
--- html/codestriker.css	2 Jun 2005 11:30:59 -0000	1.13
+++ html/codestriker.css	18 Aug 2006 06:43:13 -0000
@@ -1,5 +1,11 @@
 /* CSS for codestriker */
 
+BODY {background-color: #eeeeee;}
+
+/* Links */
+A:link    {color: blue;}
+A:visited {color: purple;}
+
 /* File heading */
 TD.file {background-color: #cccccc; font-family: Helvetica, Arial; font-size: medium}
 
@@ -144,3 +150,6 @@
 /* Styles for error field in comment posting tooltip. */
 span.hidden {display: none}
 span.error {display: inline; color: red}
+
+span.feedback {color: red;}
+span.obsolete-header {color: red; font-weight: bold;}
Index: template/en/default/createproject.html.tmpl
===================================================================
RCS file: /cvsroot/codestriker/codestriker/template/en/default/createproject.html.tmpl,v
retrieving revision 1.23
diff -u -r1.23 createproject.html.tmpl
--- template/en/default/createproject.html.tmpl	10 Aug 2006 11:29:04 -0000	1.23
+++ template/en/default/createproject.html.tmpl	18 Aug 2006 06:43:14 -0000
@@ -5,7 +5,7 @@
 
 [%# Display any "feedback" to the user if necessary. #%]
 [% IF feedback != '' %]
-    <font color="red">[% feedback %]</font>
+    <span class="feedback">[% feedback %]</span>
 [% END %]
 
 <P>
Index: template/en/default/createtopic.html.tmpl
===================================================================
RCS file: /cvsroot/codestriker/codestriker/template/en/default/createtopic.html.tmpl,v
retrieving revision 1.51
diff -u -r1.51 createtopic.html.tmpl
--- template/en/default/createtopic.html.tmpl	10 Aug 2006 11:29:04 -0000	1.51
+++ template/en/default/createtopic.html.tmpl	18 Aug 2006 06:43:14 -0000
@@ -5,7 +5,7 @@
 
 [%# Display any "feedback" to the user if necessary. #%]
 [% IF feedback != '' %]
-    <font color="red">[% feedback %]</font>
+    <span class="feedback">[% feedback %]</span>
 [% END %]
 
 <P>
@@ -16,7 +16,7 @@
 
 [%# Show any topics that this topic will obsolete #%]
 [% IF obsoleted_topics.size > 0 %]
-<font color="red"><strong>Topics to obsolete:</strong></font>
+<span style="obsolete-header">Topics to obsolete:</span>
 [% FOREACH topic = obsoleted_topics %]
 <a href="[% topic.view_url %]">[% topic.title | html_entity %]</a>[% IF ! loop.last() %],[% END %]
 
Index: template/en/default/editproject.html.tmpl
===================================================================
RCS file: /cvsroot/codestriker/codestriker/template/en/default/editproject.html.tmpl,v
retrieving revision 1.24
diff -u -r1.24 editproject.html.tmpl
--- template/en/default/editproject.html.tmpl	10 Aug 2006 11:29:05 -0000	1.24
+++ template/en/default/editproject.html.tmpl	18 Aug 2006 06:43:14 -0000
@@ -32,7 +32,7 @@
 
 [%# Display any "feedback" to the user if necessary. #%]
 [% IF feedback != '' %]
-    <font color="red">[% feedback %]</font>
+    <span class="feedback">[% feedback %]</span>
 [% END %]
 
 <P>
Index: template/en/default/header.html.tmpl
===================================================================
RCS file: /cvsroot/codestriker/codestriker/template/en/default/header.html.tmpl,v
retrieving revision 1.13
diff -u -r1.13 header.html.tmpl
--- template/en/default/header.html.tmpl	7 Jun 2005 22:51:47 -0000	1.13
+++ template/en/default/header.html.tmpl	18 Aug 2006 06:43:14 -0000
@@ -1,6 +1,6 @@
 [% IF closehead %]
 </head>
-<body link="blue" vlink="purple" bgcolor="#eeeeee" onLoad="gotoAnchor(cs_load_anchor, cs_reload);">
+<body onLoad="gotoAnchor(cs_load_anchor, cs_reload);">
 [% END %]
 
 [%# Header HTML code to appear on each screen, after <body> tag. #%]
Index: template/en/default/listprojects.html.tmpl
===================================================================
RCS file: /cvsroot/codestriker/codestriker/template/en/default/listprojects.html.tmpl,v
retrieving revision 1.22
diff -u -r1.22 listprojects.html.tmpl
--- template/en/default/listprojects.html.tmpl	10 Aug 2006 11:29:05 -0000	1.22
+++ template/en/default/listprojects.html.tmpl	18 Aug 2006 06:43:14 -0000
@@ -5,7 +5,7 @@
 
 [%# Display any "feedback" to the user if necessary. #%]
 [% IF feedback != '' %]
-    <font color="red">[% feedback %]</font>
+    <span class="feedback">[% feedback %]</span>
 [% END %]
 
 <H1>Project list</H1>
Index: template/en/default/listtopics.html.tmpl
===================================================================
RCS file: /cvsroot/codestriker/codestriker/template/en/default/listtopics.html.tmpl,v
retrieving revision 1.38
diff -u -r1.38 listtopics.html.tmpl
--- template/en/default/listtopics.html.tmpl	10 Aug 2006 11:29:05 -0000	1.38
+++ template/en/default/listtopics.html.tmpl	18 Aug 2006 06:43:14 -0000
@@ -5,7 +5,7 @@
 
 [%# Display any "feedback" to the user if necessary. #%]
 [% IF feedback != '' %]
-    <font color="red">[% feedback %]</font>
+    <span class="feedback">[% feedback %]</span>
     <p>
 [% END %]
 
Index: template/en/default/metricsreport.html.tmpl
===================================================================
RCS file: /cvsroot/codestriker/codestriker/template/en/default/metricsreport.html.tmpl,v
retrieving revision 1.17
diff -u -r1.17 metricsreport.html.tmpl
--- template/en/default/metricsreport.html.tmpl	10 Aug 2006 11:29:05 -0000	1.17
+++ template/en/default/metricsreport.html.tmpl	18 Aug 2006 06:43:14 -0000
@@ -7,7 +7,7 @@
 
 [%# Display any "feedback" to the user if necessary. #%]
 [% IF feedback != '' %]
-    <font color="red">[% feedback %]</font>
+    <span class="feedback">[% feedback %]</span>
     <p>
 [% END %]
 
Index: template/en/default/submitnewtopic.html.tmpl
===================================================================
RCS file: /cvsroot/codestriker/codestriker/template/en/default/submitnewtopic.html.tmpl,v
retrieving revision 1.6
diff -u -r1.6 submitnewtopic.html.tmpl
--- template/en/default/submitnewtopic.html.tmpl	16 Jan 2006 10:49:24 -0000	1.6
+++ template/en/default/submitnewtopic.html.tmpl	18 Aug 2006 06:43:14 -0000
@@ -5,7 +5,7 @@
 
 [%# Display any "feedback" to the user if necessary. #%]
 [% IF feedback != '' %]
-    <font color="red">[% feedback %]</font>
+    <span class="feedback">[% feedback %]</span>
     <p>
 [% END %]
 
Index: template/en/default/viewtopic.html.tmpl
===================================================================
RCS file: /cvsroot/codestriker/codestriker/template/en/default/viewtopic.html.tmpl,v
retrieving revision 1.37
diff -u -r1.37 viewtopic.html.tmpl
--- template/en/default/viewtopic.html.tmpl	10 Aug 2006 11:29:05 -0000	1.37
+++ template/en/default/viewtopic.html.tmpl	18 Aug 2006 06:43:14 -0000
@@ -1,6 +1,5 @@
 </head>
-<body vlink="purple" onload="view_topic_on_load_handler();"
-      bgcolor="#eeeeee" link="blue">
+<body onload="view_topic_on_load_handler();">
 
 [%# Screen for displaying the heading information of a topic.  The
     actual view topic data is still generated directly from the perl
Index: template/en/default/viewtopicheader.html.tmpl
===================================================================
RCS file: /cvsroot/codestriker/codestriker/template/en/default/viewtopicheader.html.tmpl,v
retrieving revision 1.8
diff -u -r1.8 viewtopicheader.html.tmpl
--- template/en/default/viewtopicheader.html.tmpl	21 Feb 2005 11:25:32 -0000	1.8
+++ template/en/default/viewtopicheader.html.tmpl	18 Aug 2006 06:43:14 -0000
@@ -9,7 +9,7 @@
 
 [%# Display any "feedback" to the user if necessary. #%]
 [% IF feedback != '' %]
-    <font color="red">[% feedback %]</font>
+    <span class="feedback">[% feedback %]</span>
     <p>
 [% END %]
 
@@ -39,7 +39,7 @@
 
 [%# If this topic obsoletes any other topics, show them now #%]
 [% IF obsoleted_topics.size > 0 %]
-<font color="red"><strong>Topic obsoletes:</strong></font>
+<span style="obsolete-header">Topics obsoletes:</span>
   [% FOREACH entry = obsoleted_topics %]
     <a href="[% entry.view_url %]">[% entry.title | html_entity %]</a>[% IF ! loop.last() %],[% END %]
   [% END %]
@@ -48,7 +48,7 @@
 
 [%# If this topic is obsoleted by other topics, show them now #%]
 [% IF obsoleted_by.size > 0 %]
-<font color="red"><strong>Obsoleted by:</strong></font>
+<span style="obsolete-header">Obsoleted by:</span>
   [% FOREACH entry = obsoleted_by %]
     <a href="[% entry.view_url %]">[% entry.title | html_entity %]</a>[% IF ! loop.last() %],[% END %]
   [% END %]
