From e42b39db053c5e55c0cf6b9f3184c8d99ec6559a Mon Sep 17 00:00:00 2001 From: Warren Block Date: Sat, 7 Jan 2012 00:46:26 +0000 Subject: [PATCH] Fix rendering of calloutlist entries so they appear on the same line as the definition. Approved by: gjb (mentor) --- share/misc/docbook.css | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/share/misc/docbook.css b/share/misc/docbook.css index 4c1d564033..d1ac24ef4b 100644 --- a/share/misc/docbook.css +++ b/share/misc/docbook.css @@ -56,6 +56,16 @@ DL { line-height: 1.2; } +DIV.CALLOUTLIST DT { + float: left; + width: 1em; +} + +DIV.CALLOUTLIST DD { + clear: right; + margin-bottom: 1ex; +} + BODY FORM { margin: .6em 0; }