Return-Path: Delivered-To: apmail-httpd-cvs-archive@httpd.apache.org Received: (qmail 88056 invoked by uid 500); 6 May 2003 22:39:37 -0000 Mailing-List: contact cvs-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: dev@httpd.apache.org list-help: list-unsubscribe: list-post: Delivered-To: mailing list cvs@httpd.apache.org Received: (qmail 88024 invoked by uid 500); 6 May 2003 22:39:37 -0000 Delivered-To: apmail-httpd-2.0-cvs@apache.org Date: 6 May 2003 22:39:35 -0000 Message-ID: <20030506223935.7017.qmail@icarus.apache.org> From: nd@apache.org To: httpd-2.0-cvs@apache.org Subject: cvs commit: httpd-2.0/docs/manual/style/css manual.css X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N nd 2003/05/06 15:39:35 Modified: docs/manual/style/css Tag: APACHE_2_0_BRANCH manual.css Log: backport from 2.1 be more specific when expressing style whishes :) This removes the hover effect on non-link anchors. (tested with IE6, Phoenix 0.5, Opera 7) Revision Changes Path No revision No revision 1.17.2.7 +4 -2 httpd-2.0/docs/manual/style/css/manual.css Index: manual.css =================================================================== RCS file: /home/cvs/httpd-2.0/docs/manual/style/css/manual.css,v retrieving revision 1.17.2.6 retrieving revision 1.17.2.7 diff -u -r1.17.2.6 -r1.17.2.7 --- manual.css 9 Apr 2003 15:15:53 -0000 1.17.2.6 +++ manual.css 6 May 2003 22:39:35 -0000 1.17.2.7 @@ -59,8 +59,10 @@ background-color: inherit; } -a:hover, -a:active { +a:link:hover, +a:link:active, +a:visited:hover, +a:visited:active { color: #0073c7; background-color: #f0f0f0; }