template-formula/docs/_static/css/custom.css
Imran Iqbal 24bd338334
feat(rtd): provide custom CSS file for overriding in-use Sphinx theme
* `sphinx_rtd_theme` known issue: long lines in tables do not wrap by default
  - https://github.com/rtfd/sphinx_rtd_theme/issues/117
2019-03-01 15:08:58 +00:00

18 lines
387 B
CSS

/*
Override styles for in-use Sphinx theme
*/
/* override table width restrictions */
.wy-table-responsive table th
, .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;
}