b0ec91e69e
* Some framework for docs * Separate CSS file for our site-specific CSS. * Override the read-the-docs theme for tables so that tables don't always horizontally scroll * Add a |br| substitution that lets us line break inside of tables * Add |_| non-breaking-space substitution which is also for formatting tables * Configure rstcheck to ignore all substitutions which are being added by sphinx in the conf.py * Fix table of auto interpreter options The table was being hardcoded at a certain width to work around a read-the-docs theme bug. Fix the bug instead and format the table using better sphinx practices. * Remove unused substitutions We had substitutions defined that were never used in our documentation. Remove those. Also add to the rstcheck whitelist three substitutions which are defined by sphinx itself, version, release, and today.
16 lines
470 B
CSS
16 lines
470 B
CSS
/* Fix for read the docs theme:
|
|
* https://rackerlabs.github.io/docs-rackspace/tools/rtd-tables.html
|
|
*/
|
|
/* 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;
|
|
}
|
|
}
|