From: Rich Bowen Date: Wed, 10 Jun 2026 13:04:43 +0000 (+0000) Subject: css: hide back-to-top arrows on narrow viewports (Bug 70098) X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=b6757c76893d969db6a62b6535461e8a405c3696;p=thirdparty%2Fapache%2Fhttpd.git css: hide back-to-top arrows on narrow viewports (Bug 70098) git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1935181 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/style/css/manual.css b/docs/manual/style/css/manual.css index 9eb7979cbb..4084e68494 100644 --- a/docs/manual/style/css/manual.css +++ b/docs/manual/style/css/manual.css @@ -1237,4 +1237,9 @@ h2:hover > .permalink { overflow-x: auto; max-width: 100%; } + + /* Bug 70098: hide back-to-top arrows on narrow viewports */ + div.top { + display: none; + } }