diff options
author | Ingo Schwarze <schwarze@openbsd.org> | 2018-08-27 23:13:44 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@openbsd.org> | 2018-08-27 23:13:44 +0000 |
commit | ebb2ae0ade86462840e2db3f65ce4db844f34884 (patch) | |
tree | bf9989e70b4df288212fd942250ad74a13e25918 | |
parent | 6bdbb0b18d6cd5a193294913df278355deebfa02 (diff) | |
download | mandoc-ebb2ae0ade86462840e2db3f65ce4db844f34884.tar.gz |
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@.
-rw-r--r-- | mandoc.css | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; |