From: Peter Krempa Date: Mon, 3 Aug 2020 06:24:30 +0000 (+0200) Subject: docs: css: Hide redundant 'Contents:' line in table of contents of RST docs X-Git-Tag: v6.7.0-rc1~205 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=80f70c9c9a23de42cc3abfb32bbf4afa61369fd3;p=thirdparty%2Flibvirt.git docs: css: Hide redundant 'Contents:' line in table of contents of RST docs 'docutils' add line saying "Contents:" on top of the table of contents. We don't have that in other documents nor it's really necessary. Hide it in the stylesheet as we can select it easily. Signed-off-by: Peter Krempa Reviewed-by: Ján Tomko --- diff --git a/docs/libvirt.css b/docs/libvirt.css index 6b1e86c7d8..4dc9d3ac76 100644 --- a/docs/libvirt.css +++ b/docs/libvirt.css @@ -597,3 +597,7 @@ th p, td p { margin-top: 2em; margin-bottom: 2em; } + +#contents p.topic-title { + display: none; +}