From: André Malo Date: Wed, 11 Sep 2002 13:30:34 +0000 (+0000) Subject: fix "hover" behaviour on non-white backgrounds X-Git-Tag: 2.0.42~71 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6c22fa6417520ac54427677184fdf797ba39cd46;p=apache fix "hover" behaviour on non-white backgrounds for all link types. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@96766 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/style/css/manual.css b/docs/manual/style/css/manual.css index 24ae227115..0e101e6a40 100644 --- a/docs/manual/style/css/manual.css +++ b/docs/manual/style/css/manual.css @@ -56,11 +56,17 @@ a:active { background-color: #f0f0f0; } -/* sidebar */ +/* hover on non-white backgrounds */ +div.note a:hover, +div.note a:active, +div.example a:hover, +div.example a:active, +div.warning a:hover, +div.warning a:active, div#quickview a:hover, div#quickview a:active { background-color: #fff; - color: #0073c7; /* prevent validator warning */ + color: #0073c7; } /* code.module [links] */ @@ -82,6 +88,19 @@ code.module a:active { background-color: #f0f0f0; } +/* hover on non-white backgrounds */ +div.note code.module a:hover, +div.note code.module a:active, +div.example code.module a:hover, +div.example code.module a:active, +div.warning code.module a:hover, +div.warning code.module a:active, +div#quickview code.module a:hover, +div#quickview code.module a:active { + background-color: #fff; + color: #8b4513; +} + /* code.directive [links] */ /* ====================== */ code.directive, @@ -101,6 +120,19 @@ code.directive a:active { background-color: #f0f0f0; } +/* hover on non-white backgrounds */ +div.note code.directive a:hover, +div.note code.directive a:active, +div.example code.directive a:hover, +div.example code.directive a:active, +div.warning code.directive a:hover, +div.warning code.directive a:active, +div#quickview code.directive a:hover, +div#quickview code.directive a:active { + background-color: #fff; + color: #287f00; +} + /* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ * Headings * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */