Received: from localhost (maia-4.hub.org [200.46.204.183]) by postgresql.org (Postfix) with ESMTP id EE1F39FA5D2 for ; Fri, 5 Jan 2007 16:05:20 -0400 (AST) Received: from postgresql.org ([200.46.204.71]) by localhost (mx1.hub.org [200.46.204.183]) (amavisd-new, port 10024) with ESMTP id 18432-09 for ; Fri, 5 Jan 2007 16:05:01 -0400 (AST) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.4 Received: from wr-out-0506.google.com (wr-out-0506.google.com [64.233.184.228]) by postgresql.org (Postfix) with ESMTP id 009319FA48F for ; Fri, 5 Jan 2007 16:05:00 -0400 (AST) Received: by wr-out-0506.google.com with SMTP id i30so1424658wra for ; Fri, 05 Jan 2007 12:05:00 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:mime-version:content-type; b=VlCgcQVwthlu0qiGVbor9EFFGa7JujXC3t6Z5x2ENMcQKv3TIiR7BIlseDczUrHma9AE0LQLlHGB2Zq6Hfzd3lVA/JKpYO+kENODJGiDZ8e+VW4x9PGbSDdIw1a27RWlH/djQ3OBGH9UQN8UOnhyu1thnIhyRpRTDZ0B/TjFrY8= Received: by 10.78.185.7 with SMTP id i7mr3237532huf.1168027499823; Fri, 05 Jan 2007 12:04:59 -0800 (PST) Received: by 10.78.100.11 with HTTP; Fri, 5 Jan 2007 12:04:59 -0800 (PST) Message-ID: <46ae89fb0701051204l234fefcfyb213a5e48adc6772@mail.gmail.com> Date: Fri, 5 Jan 2007 12:04:59 -0800 From: "Matt Perry" To: pgsql-www@postgresql.org Subject: Patch for text.css MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_38512_1725153.1168027499574" X-Virus-Scanned: Maia Mailguard 1.0.1 X-Archive-Number: 200701/7 X-Sequence-Number: 11274 ------=_Part_38512_1725153.1168027499574 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline Hi, Could someone please look into applying this patch? The current style in http://www.postgresql.org/layout/css/blue/text.css sets the visited and non-visited link colors to be the same. This patch fixes them to be different so this navigation aid is restored. Matt --- text.css.orig 2007-01-05 11:56:37.295915200 -0800 +++ text.css 2007-01-05 11:57:27.347886400 -0800 @@ -129,7 +129,7 @@ /* Link Styles */ a:link { color:#0085B0; text-decoration: underline; } -a:visited { color:#0085B0; text-decoration: underline; } +a:visited { color:#004E66; text-decoration: underline; } a:active { color:#0085B0; text-decoration: underline; } a:hover { color:#000000; text-decoration: underline; } ------=_Part_38512_1725153.1168027499574 Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline Hi,

Could someone please look into applying this patch? The current style in http://www.postgresql.org/layout/css/blue/text.css sets the visited and non-visited link colors to be the same.  This patch fixes them to be different so this navigation aid is restored.

Matt

--- text.css.orig    2007-01-05 11:56:37.295915200 -0800
+++ text.css    2007-01-05 11:57:27.347886400 -0800
@@ -129,7 +129,7 @@
 /* Link Styles */
 
 a:link                          { color:#0085B0; text-decoration: underline; }
-a:visited                       { color:#0085B0; text-decoration: underline; }
+a:visited                       { color:#004E66; text-decoration: underline; }
 a:active                        { color:#0085B0; text-decoration: underline; }
 a:hover                         { color:#000000; text-decoration: underline; }
 

------=_Part_38512_1725153.1168027499574--