From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id A50AE138350 for ; Tue, 3 Mar 2020 08:30:31 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D7DE9E09FA; Tue, 3 Mar 2020 08:30:30 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id BDE6DE09FA for ; Tue, 3 Mar 2020 08:30:30 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 6303D34F305 for ; Tue, 3 Mar 2020 08:30:29 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 73AF3157 for ; Tue, 3 Mar 2020 08:30:27 +0000 (UTC) From: "Ulrich Müller" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ulrich Müller" Message-ID: <1583224067.322da3e34dc68d83b8d5cfd4431c8d9ebb092add.ulm@gentoo> Subject: [gentoo-commits] proj/devmanual:master commit in: / X-VCS-Repository: proj/devmanual X-VCS-Files: devbook.xsl devmanual.css X-VCS-Directories: / X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: 322da3e34dc68d83b8d5cfd4431c8d9ebb092add X-VCS-Branch: master Date: Tue, 3 Mar 2020 08:30:27 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: ebd888e7-867a-4e4b-b324-5e7be673338b X-Archives-Hash: 9654f51f52256e608557f3bbde0bc8fb commit: 322da3e34dc68d83b8d5cfd4431c8d9ebb092add Author: Max Magorsch gentoo org> AuthorDate: Mon Mar 2 15:43:22 2020 +0000 Commit: Ulrich Müller gentoo org> CommitDate: Tue Mar 3 08:27:47 2020 +0000 URL: https://gitweb.gentoo.org/proj/devmanual.git/commit/?id=322da3e3 Fix list-groups in text browsers Closes: https://bugs.gentoo.org/711286 Signed-off-by: Max Magorsch gentoo.org> [Removed extra newline before .] Signed-off-by: Ulrich Müller gentoo.org> devbook.xsl | 13 +++++++------ devmanual.css | 13 +++++++++++++ 2 files changed, 20 insertions(+), 6 deletions(-) diff --git a/devbook.xsl b/devbook.xsl index 8024e7f..ea15885 100644 --- a/devbook.xsl +++ b/devbook.xsl @@ -204,14 +204,15 @@ -
+
+
diff --git a/devmanual.css b/devmanual.css index 24b3551..288f81d 100644 --- a/devmanual.css +++ b/devmanual.css @@ -73,4 +73,17 @@ pre span.Statement { color: darkred; } margin-top: 3px; } +/* + * .fix-links can be used to fix listgroups in text browsers + * see https://bugs.gentoo.org/show_bug.cgi?id=711286 + */ + +.fix-links > li { + padding: 0px; +} + +.fix-links > li > a { + border: none; +} + /* vim: set ts=4 tw=80 et : */