From: Christophe Jaillet Date: Sat, 12 Jan 2019 13:38:03 +0000 (+0000) Subject: Follow up to r1828588. X-Git-Tag: 2.5.0-alpha2-ci-test-only~2212 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a69c1cd4d07fffc26e16f23751543ca40c213026;p=thirdparty%2Fapache%2Fhttpd.git Follow up to r1828588. Update css to have permalink more in line with httpd.a.o: - default to white (blue on dark-blue is not really visible) - visible only when the mouse is over the corresponding heading git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1851167 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/style/css/manual.css b/docs/manual/style/css/manual.css index b3b024d46fc..4b267515792 100644 --- a/docs/manual/style/css/manual.css +++ b/docs/manual/style/css/manual.css @@ -1032,6 +1032,24 @@ p.figure dfn { font-weight: bold; } +/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + * Permalink are used in

tags only. + * They are hidden by default, and become visible only when the mouse + * is over the corresponding element. + * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */ +.permalink { + visibility: hidden; +} +.permalink:link { + color: white; +} +.permalink:visited { + color: white; +} +h2:hover > .permalink { + visibility: visible; +} + /* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ * -> The End <- * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */