diff options
| author | Scott Shawcroft <scott@chickadee.tech> | 2017-07-14 11:28:39 -0700 |
|---|---|---|
| committer | Scott Shawcroft <scott@chickadee.tech> | 2017-07-14 11:28:39 -0700 |
| commit | af823e64c4768996e510bab613106018fde22329 (patch) | |
| tree | 41f5fd3b9bfb9c5c16d5e42f87619d076b1bfb01 /docs/static | |
| parent | c82b84e0a92575f01fbfda0713c8906745357155 (diff) | |
docs: tweak css so a horizontal scroll bar shows up on the wide pinout tables. Fixes #166
Diffstat (limited to 'docs/static')
| -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; + } +} |
