From: Philippe Proulx Date: Thu, 12 Mar 2020 17:24:00 +0000 (-0400) Subject: doc/api/libbabeltrace2/style.css: make font weight of `.intertd` normal X-Git-Url: http://git.efficios.com/?p=babeltrace.git;a=commitdiff_plain;h=51fd98328dd32746627393a08eee9487c10e281e doc/api/libbabeltrace2/style.css: make font weight of `.intertd` normal For some reason, `.intertd` paragraphs, which Doxygen creates when a given table cell (used for parameter descriptions, amongst other things) contains more than one paragraphs, are bold. Here's an example to generate such paragraphs: @param some_param @parblock Normal paragraph. Bold paragraph. Also bold. @endparblock I don't know the bold font weight's rationale here, but it does not look pretty, so force the weight to be normal in `style.css`. Signed-off-by: Philippe Proulx Change-Id: Ida6970a75f6cc1b4ac4f1fc873e86a3b453d09ac Reviewed-on: https://review.lttng.org/c/babeltrace/+/3223 --- diff --git a/doc/api/libbabeltrace2/style.css b/doc/api/libbabeltrace2/style.css index 4a42678e..902e7e55 100644 --- a/doc/api/libbabeltrace2/style.css +++ b/doc/api/libbabeltrace2/style.css @@ -77,3 +77,7 @@ table.params .paramname { .contents table.doxtable th { background-color: #5173b3; } + +.contents p.intertd { + font-weight: normal; +}