diff --git a/docs/_static/css/custom_theme.css b/docs/_static/css/custom_theme.css index e6e34db..3d0cec7 100644 --- a/docs/_static/css/custom_theme.css +++ b/docs/_static/css/custom_theme.css @@ -1,5 +1,9 @@ @import url("theme.css"); .wy-nav-content { - max-width: 90%; + max-width: none; +} + +.wy-table-responsive table td, .wy-table-responsive table th { + white-space: inherit; } diff --git a/docs/conf.py b/docs/conf.py index b11b51d..5df65ec 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -6,7 +6,7 @@ More information on the configuration options is available at: https://www.sphinx-doc.org/en/master/usage/configuration.html """ -import sphinx_rtd_theme +# import sphinx_rtd_theme from pkg_resources import get_distribution import django @@ -25,7 +25,7 @@ description = ("Keep track of failed login attempts in Django-powered sites.",) # Add any Sphinx extension module names here, as strings. # They can be extensions coming with Sphinx (named 'sphinx.ext.*') or your custom ones. -extensions = ["sphinx.ext.autodoc"] +extensions = ["sphinx_rtd_theme","sphinx.ext.autodoc"] # Add any paths that contain templates here, relative to this directory. templates_path = ["_templates"] @@ -74,7 +74,7 @@ html_theme = "sphinx_rtd_theme" html_style = "css/custom_theme.css" # Add any paths that contain custom themes here, relative to this directory. -html_theme_path = [sphinx_rtd_theme.get_html_theme_path()] +# html_theme_path = [sphinx_rtd_theme.get_html_theme_path()] # Add any paths that contain custom static files (such as style sheets) here, # relative to this directory. They are copied after the builtin static files,