File tree Expand file tree Collapse file tree 2 files changed +16
-0
lines changed Expand file tree Collapse file tree 2 files changed +16
-0
lines changed Original file line number Diff line number Diff line change
1
+ /* override table width restrictions */
2
+ /* as described in https://github.com/snide/sphinx_rtd_theme/issues/117 */
3
+ .wy-table-responsive table td , .wy-table-responsive table th {
4
+ /* !important prevents the common CSS stylesheets from
5
+ overriding this as on RTD they are loaded after this stylesheet */
6
+ white-space : normal !important ;
7
+ }
8
+
9
+ .wy-table-responsive {
10
+ overflow : visible !important ;
11
+ }
Original file line number Diff line number Diff line change @@ -126,6 +126,7 @@ def __getattr__(cls, name):
126
126
# If true, keep warnings as "system message" paragraphs in the built documents.
127
127
#keep_warnings = False
128
128
129
+ autosummary_generate = True
129
130
130
131
# -- Options for HTML output ----------------------------------------------
131
132
@@ -219,6 +220,10 @@ def __getattr__(cls, name):
219
220
# Output file base name for HTML help builder.
220
221
htmlhelp_basename = 'PVLIB_Pythondoc'
221
222
223
+ # A workaround for the responsive tables always having annoying scrollbars.
224
+ def setup (app ):
225
+ app .add_stylesheet ("no_scrollbars.css" )
226
+
222
227
223
228
# -- Options for LaTeX output ---------------------------------------------
224
229
You can’t perform that action at this time.
0 commit comments