diff --git a/docs/source/_static/css/custom.css b/docs/source/_static/css/custom.css index aec73a80f9f..0f6607d9ad5 100644 --- a/docs/source/_static/css/custom.css +++ b/docs/source/_static/css/custom.css @@ -177,7 +177,6 @@ a:visited { background-color: #d9e5ef } - /* Mobile view */ .wy-nav-top { @@ -192,3 +191,15 @@ a:visited { background-position: center top; background-origin: content box; } + +/* Fix tables */ + +.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; +}