From cca0fe6ea60eb7f6b35cc433a6fff96cc65b3ff8 Mon Sep 17 00:00:00 2001 From: Jordan Wiens Date: Wed, 21 Jun 2017 22:35:31 -0400 Subject: remove 800px limit on API docs --- api-docs/source/_static/css/other.css | 3 +++ api-docs/source/conf.py | 2 ++ 2 files changed, 5 insertions(+) create mode 100644 api-docs/source/_static/css/other.css (limited to 'api-docs/source') diff --git a/api-docs/source/_static/css/other.css b/api-docs/source/_static/css/other.css new file mode 100644 index 00000000..c9600b7c --- /dev/null +++ b/api-docs/source/_static/css/other.css @@ -0,0 +1,3 @@ +.wy-nav-content { + max-width: 2000px !important; +} diff --git a/api-docs/source/conf.py b/api-docs/source/conf.py index c87cb114..412a56fa 100644 --- a/api-docs/source/conf.py +++ b/api-docs/source/conf.py @@ -41,6 +41,8 @@ def classlist(module): members.extend(inspect.getmembers(module, inspect.isfunction)) return map(lambda x: x[0], filter(lambda x: not x[0].startswith("_"), members)) +def setup(app): + app.add_stylesheet('css/other.css') def generaterst(): pythonrst = open("index.rst", "w") -- cgit v1.3.1