From aaad0a071597497854c2bddc2bdf1d63fec2f446 Mon Sep 17 00:00:00 2001 From: Rohit Chaware Date: Mon, 10 Sep 2018 18:22:28 +0530 Subject: [PATCH] Add 'documentation-table' class to override theme Tables generated in module documentation look for style class named 'documentation-table' for table properties. --- docs/_static/theme_overrides.css | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/docs/_static/theme_overrides.css b/docs/_static/theme_overrides.css index 382680d..a4ff422 100644 --- a/docs/_static/theme_overrides.css +++ b/docs/_static/theme_overrides.css @@ -14,3 +14,22 @@ .wy-nav-content { max-width: 1400px !important; } + +/* documentation-table is used by tables in the generated module documentation. */ +.documentation-table td.elbow-placeholder { + border-left: 1px solid #000; + border-top: 0px; + width: 30px; + min-width: 30px; +} + +.documentation-table th, .documentation-table td { + padding: 4px; + border-left: 1px solid #000; + border-top: 1px solid #000; +} + +.documentation-table { + border-right: 1px solid #000; + border-bottom: 1px solid #000; +}