doc/api/libbabeltrace2/style.css: make font weight of `.intertd` normal
authorPhilippe Proulx <eeppeliteloop@gmail.com>
Thu, 12 Mar 2020 17:24:00 +0000 (13:24 -0400)
committerPhilippe Proulx <eeppeliteloop@gmail.com>
Thu, 12 Mar 2020 17:43:27 +0000 (13:43 -0400)
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 <eeppeliteloop@gmail.com>
Change-Id: Ida6970a75f6cc1b4ac4f1fc873e86a3b453d09ac
Reviewed-on: https://review.lttng.org/c/babeltrace/+/3225

doc/api/libbabeltrace2/style.css

index 4a42678ea95c3c82e6a6dedbd55206ce9a09a019..902e7e558da1f357e154da4b7f8f839bcdd3925d 100644 (file)
@@ -77,3 +77,7 @@ table.params .paramname {
 .contents table.doxtable th {
     background-color: #5173b3;
 }
+
+.contents p.intertd {
+    font-weight: normal;
+}
This page took 0.024031 seconds and 4 git commands to generate.