Skip to content

Commit

Permalink
docs: tweak css so a horizontal scroll bar shows up on the wide pinou…
Browse files Browse the repository at this point in the history
…t tables. Fixes #166
  • Loading branch information
tannewt committed Jul 14, 2017
1 parent 34cc304 commit 63ade77
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions docs/static/customstyle.css
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
}

0 comments on commit 63ade77

Please sign in to comment.