Fossil

Artifact [a902990a]
Login

Artifact [a902990a]

Artifact a902990adb1a87557ce07e4ff7905f03093044bd:

Attachment "fix-css.diff" to ticket [53aa95f3] added by anonymous 2010-06-17 14:39:55.
Index: src/skins.c
===================================================================
--- src/skins.c
+++ src/skins.c
@@ -30,10 +30,11 @@
 @ REPLACE INTO config VALUES('css','/* General settings for the entire page */
 @ body {
 @   margin: 0ex 1ex;
 @   padding: 0px;
 @   background-color: white;
+@   color: black;
 @   font-family: "sans serif";
 @ }
 @
 @ /* The project logo in the upper left-hand corner of each page */
 @ div.logo {
@@ -222,10 +223,11 @@
 @ REPLACE INTO config VALUES('css','/* General settings for the entire page */
 @ body {
 @   margin: 0ex 0ex;
 @   padding: 0px;
 @   background-color: #fef3bc;
+@   color: black;
 @   font-family: sans-serif;
 @ }
 @
 @ /* The project logo in the upper left-hand corner of each page */
 @ div.logo {
@@ -427,10 +429,14 @@
 @     padding:0px;
 @     font-family:verdana, arial, helvetica, "sans serif";
 @     color:#333;
 @     background-color:white;
 @ }
+@ a { color: #000; }
+@ a:link { color: #000; }
+@ a:visited { color: #222; }
+@ a:hover { color: #300; }
 @
 @ /* consistent colours */
 @ h2 {
 @   color: #333;
 @ }

Index: src/style.c
===================================================================
--- src/style.c
+++ src/style.c
@@ -251,12 +251,17 @@
 @ /* General settings for the entire page */
 @ body {
 @   margin: 0ex 1ex;
 @   padding: 0px;
 @   background-color: white;
+@   color:black;
 @   font-family: sans-serif;
 @ }
+@ a { color: #31718e; }
+@ a:link { color: #31718e;}
+@ a:visited { color: #37318e; }
+@ a:hover { color: #8e3171; }
 @
 @ /* The project logo in the upper left-hand corner of each page */
 @ div.logo {
 @   display: table-cell;
 @   text-align: center;