diff options
| -rw-r--r-- | docs/static/customstyle.css | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/docs/static/customstyle.css b/docs/static/customstyle.css index 74eff4e05..6c964b762 100644 --- a/docs/static/customstyle.css +++ b/docs/static/customstyle.css @@ -8,3 +8,19 @@ .admonition-difference-to-cpython .admonition-title { margin: 4px; } + + + +/* 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; + } +} |
