From patchwork Sun Apr 3 21:45:57 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Gerald Pfeifer X-Patchwork-Id: 89557 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from sourceware.org (server1.sourceware.org [209.132.180.131]) by ozlabs.org (Postfix) with SMTP id B3CEDB6F97 for ; Mon, 4 Apr 2011 07:46:04 +1000 (EST) Received: (qmail 5310 invoked by alias); 3 Apr 2011 21:46:02 -0000 Received: (qmail 5293 invoked by uid 22791); 3 Apr 2011 21:46:02 -0000 X-SWARE-Spam-Status: No, hits=-2.5 required=5.0 tests=AWL, BAYES_00, RCVD_IN_DNSWL_LOW X-Spam-Check-By: sourceware.org Received: from relay03.pair.com (HELO relay03.pair.com) (209.68.5.17) by sourceware.org (qpsmtpd/0.43rc1) with SMTP; Sun, 03 Apr 2011 21:45:57 +0000 Received: (qmail 51333 invoked from network); 3 Apr 2011 21:45:56 -0000 Received: from 91.186.144.108 (HELO ?192.168.0.129?) (91.186.144.108) by relay03.pair.com with SMTP; 3 Apr 2011 21:45:56 -0000 X-pair-Authenticated: 91.186.144.108 Date: Sun, 3 Apr 2011 23:45:57 +0200 (CEST) From: Gerald Pfeifer To: gcc-patches@gcc.gnu.org Subject: [wwwdocs] Change color scheme for links Message-ID: MIME-Version: 1.0 X-IsSubscribed: yes Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Delivered-To: mailing list gcc-patches@gcc.gnu.org This removes the violet coloring for visited links that I had always not quite enjoyed (but implemented to establish sync with www.gnu.org). Now that they have thrown out the common style, so can we. Gerald Index: gcc.css =================================================================== RCS file: /cvs/gcc/wwwdocs/htdocs/gcc.css,v retrieving revision 1.5 diff -u -r1.5 gcc.css --- gcc.css 21 Sep 2006 14:17:36 -0000 1.5 +++ gcc.css 3 Apr 2011 21:34:49 -0000 @@ -3,6 +3,10 @@ Gerald Pfeifer */ +a:link { color: #0066dd; text-decoration: none; } +a:visited { color: #0000bb; text-decoration: none; } +a:hover { color: orange; text-decoration: none; } + dl.news dt { font-weight:bold; } dl.news dd { margin-left:3ex; } Index: gnu.css =================================================================== RCS file: /cvs/gcc/wwwdocs/htdocs/gnu.css,v retrieving revision 1.5 diff -u -r1.5 gnu.css --- gnu.css 3 Apr 2011 21:16:14 -0000 1.5 +++ gnu.css 3 Apr 2011 21:34:49 -0000 @@ -23,24 +23,6 @@ font-family: sans-serif; } -a:link { - color: #1f00ff; - background-color: transparent; - text-decoration: underline; - } - -a:visited { - color: #9900dd; - background-color: transparent; - text-decoration: underline; - } - -a:hover { - color: #9900dd; - background-color: transparent; - text-decoration: none; - } - .center { text-align: center; }