From: Chris Rebert Date: Sat, 2 Jan 2016 02:12:20 +0000 (-0800) Subject: Docs: disable printing of hrefs; fixes #18711 X-Git-Tag: v3.3.7~144^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1639ef73903acdc4fa069d55c1c1548e9e14ad60;p=thirdparty%2Fbootstrap.git Docs: disable printing of hrefs; fixes #18711 [ci skip] --- diff --git a/docs/assets/css/src/docs.css b/docs/assets/css/src/docs.css index a0a4dcec98..7f7f5c5d41 100644 --- a/docs/assets/css/src/docs.css +++ b/docs/assets/css/src/docs.css @@ -1622,3 +1622,10 @@ h1[id] { text-decoration: none; background-color: #0269c2; } + +/* Nullify ill-advised printing of hrefs; see #18711 */ +@media print { + a[href]:after { + content: "" !important; + } +}