From 097810e01188963644895d0bdac834cf1d71ab24 Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Sun, 17 Jan 2010 12:18:21 +0100 Subject: [PATCH] #288: fix bottom margin of paragraphs in admonitions. --- sphinx/themes/default/static/default.css_t | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/sphinx/themes/default/static/default.css_t b/sphinx/themes/default/static/default.css_t index 3bee8c8a5..b465da3fa 100644 --- a/sphinx/themes/default/static/default.css_t +++ b/sphinx/themes/default/static/default.css_t @@ -199,6 +199,18 @@ div.admonition p.admonition-title + p { display: inline; } +div.admonition p { + margin-bottom: 5px; +} + +div.admonition pre { + margin-bottom: 5px; +} + +div.admonition ul, div.admonition ol { + margin-bottom: 5px; +} + div.note { background-color: #eee; border: 1px solid #ccc;