From 597a208400377ca6285fbd204c44817e21f31907 Mon Sep 17 00:00:00 2001 From: Kristian Evers Date: Wed, 29 Nov 2017 22:08:39 +0100 Subject: CSS override of the RTD theme so that lines are wrapped in tables. [skip ci] --- docs/source/_static/theme_overrides.css | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 docs/source/_static/theme_overrides.css (limited to 'docs/source/_static') diff --git a/docs/source/_static/theme_overrides.css b/docs/source/_static/theme_overrides.css new file mode 100644 index 00000000..63ee6cc7 --- /dev/null +++ b/docs/source/_static/theme_overrides.css @@ -0,0 +1,13 @@ +/* override table width restrictions */ +@media screen and (min-width: 767px) { + + .wy-table-responsive table td { + /* !important prevents the common CSS stylesheets from overriding + this as on RTD they are loaded after this stylesheet */ + white-space: normal !important; + } + + .wy-table-responsive { + overflow: visible !important; + } +} -- cgit v1.2.3