-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
The sphinx-rtd-theme currently disables word wrap in table cells due to a bug: readthedocs/sphinx_rtd_theme#1505 This is fixed by overriding the CSS and enabling word wrapping.
- Loading branch information
Showing
2 changed files
with
15 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
@import 'css/theme.css'; | ||
|
||
/* Fix white-space wrapping in tables. | ||
* See https://github.com/readthedocs/sphinx_rtd_theme/issues/1505 | ||
* This is included via html_static_path and html_style in conf.py | ||
*/ | ||
.wy-table-responsive table td { | ||
white-space: normal; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters