Skip to content

Commit

Permalink
Fix table width issue
Browse files Browse the repository at this point in the history
Signed-off-by: Ry Jones <ry@linux.com>
(cherry picked from commit e904f0e)
  • Loading branch information
ryjones authored and mergify[bot] committed Oct 6, 2020
1 parent f2e9e6e commit 6a370f7
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion docs/source/_static/css/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,6 @@ a:visited {
background-color: #d9e5ef
}


/* Mobile view */

.wy-nav-top {
Expand All @@ -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;
}

0 comments on commit 6a370f7

Please sign in to comment.