docs: tweak css so a horizontal scroll bar shows up on the wide pinout tables. Fixes #166

This commit is contained in:
Scott Shawcroft 2017-07-14 11:28:39 -07:00
parent c82b84e0a9
commit af823e64c4

View File

@ -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;
}
}