From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from localhost (fantadrom.bsd.lv [local]) by fantadrom.bsd.lv (OpenSMTPD) with ESMTPA id 2abf4911 for ; Mon, 27 Aug 2018 18:14:15 -0500 (EST) Date: Mon, 27 Aug 2018 18:14:14 -0500 (EST) X-Mailinglist: mandoc-source Reply-To: source@mandoc.bsd.lv MIME-Version: 1.0 From: schwarze@mandoc.bsd.lv To: source@mandoc.bsd.lv Subject: mandoc: Reduce excessive right padding in tagged list heads. X-Mailer: activitymail 1.26, http://search.cpan.org/dist/activitymail/ Content-Type: text/plain; charset=utf-8 Message-Id: Log Message: ----------- Reduce excessive right padding in tagged list heads. The 1.2em was an approximate equivalent of the 2n traditionally used for terminal display, but it is much too wide for HTML rendering. Issue reported by mikeb@. Modified Files: -------------- mandoc: mandoc.css Revision Data ------------- Index: mandoc.css =================================================================== RCS file: /home/cvs/mandoc/mandoc/mandoc.css,v retrieving revision 1.36 retrieving revision 1.37 diff -Lmandoc.css -Lmandoc.css -u -p -r1.36 -r1.37 --- mandoc.css +++ mandoc.css @@ -111,7 +111,7 @@ td.foot-os { text-align: right; } float: left; margin-top: 0em; margin-left: -5.5em; - padding-right: 1.2em; + padding-right: 0.5em; vertical-align: top; } .Bl-tag > dd { clear: right; -- To unsubscribe send an email to source+unsubscribe@mandoc.bsd.lv