From 51fd98328dd32746627393a08eee9487c10e281e Mon Sep 17 00:00:00 2001 From: Philippe Proulx Date: Thu, 12 Mar 2020 13:24:00 -0400 Subject: [PATCH] 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 --- doc/api/libbabeltrace2/style.css | 4 ++++ 1 file changed, 4 insertions(+) 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; +} -- 2.34.1