From 00a1596c698f7a9e7eb6f32b51ea5c3e3425e9ef Mon Sep 17 00:00:00 2001 From: KATO Tomoyuki Date: Sat, 31 Oct 2015 16:57:51 +0900 Subject: [PATCH] Add padding css property for td and th Currently, no margin in the table, so add small margin to improve readability. Change-Id: I25dc93686e45fdbc1522cded7ab413cc9d4bb0b8 --- .../theme/openstackdocs/static/css/combined.css | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/openstackdocstheme/theme/openstackdocs/static/css/combined.css b/openstackdocstheme/theme/openstackdocs/static/css/combined.css index d4ce72d5..a826f9b8 100644 --- a/openstackdocstheme/theme/openstackdocs/static/css/combined.css +++ b/openstackdocstheme/theme/openstackdocs/static/css/combined.css @@ -1,11 +1,16 @@ +html { + overflow-y: scroll; } + /* pad after a table. * bug 1439918 */ table { - margin-bottom: 10px; -} + margin-bottom: 10px; } -html { - overflow-y: scroll; } +table.docutils th { + padding: 2px; } + +table.docutils td { + padding: 2px; } hr { height: 1px !important; }