From a815ffee75ddfed43c13aa1b2f04bdbb66cfebf6 Mon Sep 17 00:00:00 2001 From: Eric Niebler Date: Wed, 1 Feb 2006 18:12:09 +0000 Subject: [PATCH] more idiomatic disiplay for variable lists, per Rene's suggestion [SVN r32500] --- doc/html/boostbook.css | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/doc/html/boostbook.css b/doc/html/boostbook.css index 41d8324726..3b6f8db2f3 100644 --- a/doc/html/boostbook.css +++ b/doc/html/boostbook.css @@ -163,20 +163,22 @@ div.variablelist p.title text-align: left; } -/* tabularize parameter lists */ +/* Make the terms in definition lists bold */ div.variablelist dl dt { - float: left; - clear: left; - display: block; - font-style: italic; + font-weight: bold; } div.variablelist dl dd { - display: block; - clear: right; - padding-left: 8pc; + margin: 1em 0em 1em 2em; +} + +/* In Doxygen-generaged parameter lists, the parameter descriptions + are wrapped in

...

for some reason. Ignore that. */ +div.variablelist dl dd p +{ + display: inline; } /* title of books and articles in bibliographies */