diff --git a/docs/conf.py b/docs/conf.py index 64543bf43a1..9b78b1e63f0 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -214,11 +214,16 @@ def setup(app): # so a file named "default.css" will overwrite the builtin "default.css". html_static_path = ['_static'] -html_context = { - 'css_files': [ - '_static/theme_overrides.css', # override wide tables in RTD theme - ], -} + +# This should be commented back in for wide tables +# See: https://github.com/rtfd/readthedocs.org/issues/2116 +# and: https://github.com/rtfd/sphinx_rtd_theme/pull/432 + +# html_context = { +# 'css_files': [ +# '_static/theme_overrides.css', # override wide tables in RTD theme +# ], +# } # If not '', a 'Last updated on:' timestamp is inserted at every page bottom, # using the given strftime format.