Really fix #1311 by declaring CSS overrides as !important

this is needed because on RTD the common hosted theme stylesheets get added
after the overrides.
This commit is contained in:
Ondrej Grover 2014-04-28 21:39:20 +02:00
commit 46c865f295

View file

@ -1,12 +1,12 @@
/* override table width restrictions */
.wy-table-responsive table td, .wy-table-responsive table th {
white-space: normal;
/* !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 {
margin-bottom: 24px;
max-width: 100%;
overflow: visible;
overflow: visible !important;
}