From: Peter Krempa Date: Tue, 14 Jul 2020 10:18:45 +0000 (+0200) Subject: docs: css: Make definition list 'code' entries bold when converted from rst X-Git-Tag: v6.7.0-rc1~207 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=978cc692879909383039480bc075133ce8fed06b;p=thirdparty%2Flibvirt.git docs: css: Make definition list 'code' entries bold when converted from rst Docutils don't generate for inline literals (``blah``) in rst but rather put them in the '.literal' class. Add a selector for making them bold when used in definition list headers. Signed-off-by: Peter Krempa Reviewed-by: Ján Tomko --- diff --git a/docs/generic.css b/docs/generic.css index c4092abc2b..d15d85e67a 100644 --- a/docs/generic.css +++ b/docs/generic.css @@ -25,7 +25,7 @@ dt { margin-right: 2em; } -dt code { +dt code, dt .literal { font-weight: bold; }