From 4be5a2f0c2c6f1236828592d8cb9ca5dc6f9df10 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20P=2E=20Berrang=C3=A9?= Date: Thu, 6 Feb 2020 16:24:52 +0000 Subject: [PATCH] docs: reduce excessive spacing in ToC for RST files MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The table of contents in the RST based files uses

tags inside the

  • , which results in 1em's worth of spacing above & below each entry. This results in way too much whitespace in the ToC. Reviewed-by: Ján Tomko Signed-off-by: Daniel P. Berrangé --- docs/libvirt.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/libvirt.css b/docs/libvirt.css index 2fe123395c..18e55dac59 100644 --- a/docs/libvirt.css +++ b/docs/libvirt.css @@ -579,3 +579,7 @@ ul.news-section-content li dl dd { font-family: monospace; background: #eeeeee; } + +.contents li p { + margin: 2px; +}