From cf7ae302c80cb8fe421e349ce3d8bee6db00730f Mon Sep 17 00:00:00 2001 From: Jason Boxman Date: Wed, 28 Oct 2020 17:41:13 -0400 Subject: [PATCH] Fix margin and padding for definition lists --- _stylesheets/docs.css | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/_stylesheets/docs.css b/_stylesheets/docs.css index 50eb8265fc..2be21f9d15 100644 --- a/_stylesheets/docs.css +++ b/_stylesheets/docs.css @@ -1291,6 +1291,13 @@ button[name="button-collapse-expand-all"] { } span.footnote a:active, span.footnoteref a:active { text-decoration: underline; +} +.dlist dt { + padding-bottom: 0.5em; +} +/* This overrides the 0 margin from subdomain.css */ +.dlist dd { + margin-left: 1.5em; } #footnotes { padding-top: 0.75em;