From 9d1a9699cd84e785a141af453e0daef20e36fc26 Mon Sep 17 00:00:00 2001 From: Bernd Date: Thu, 8 Oct 2015 18:03:36 +0900 Subject: [PATCH] Add table padding to openstackdocstheme CSS This patch adds white space below a table to make it look nicer. Change-Id: I7148ba6dc1e0e01ee0eceeb3a90bcc2591c0b0c5 Closes-Bug: #1439918 --- .../theme/openstackdocs/static/css/combined.css | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/openstackdocstheme/theme/openstackdocs/static/css/combined.css b/openstackdocstheme/theme/openstackdocs/static/css/combined.css index ca92a136..d4ce72d5 100644 --- a/openstackdocstheme/theme/openstackdocs/static/css/combined.css +++ b/openstackdocstheme/theme/openstackdocs/static/css/combined.css @@ -1,3 +1,9 @@ +/* pad after a table. + * bug 1439918 */ +table { + margin-bottom: 10px; +} + html { overflow-y: scroll; }