mirror of
https://github.com/saltstack-formulas/template-formula.git
synced 2025-04-17 10:10:28 +00:00

* `sphinx_rtd_theme` known issue: long lines in tables do not wrap by default - https://github.com/rtfd/sphinx_rtd_theme/issues/117
18 lines
387 B
CSS
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;
|
|
}
|
|
|