summaryrefslogtreecommitdiff
path: root/doc/developer/conf.py
diff options
context:
space:
mode:
authorQuentin Young <qlyoung@cumulusnetworks.com>2018-03-23 13:20:43 -0400
committerQuentin Young <qlyoung@cumulusnetworks.com>2018-03-23 13:20:43 -0400
commit4386f129835c3bd4b28ec1059943d117a97a49ed (patch)
tree7841d0102b3356b53738989f4b83c56cc39bc61a /doc/developer/conf.py
parent0773854304d72a4a1d3ac2fb05aa5bb971d38afd (diff)
doc: tweak html body width
The default theme has a css rule that limits the body element width to 800px, which results in sizeable chunk of empty space to the right of the docs. Add a small css override to remove this limit (like the Python docs do). Signed-off-by: Quentin Young <qlyoung@cumulusnetworks.com>
Diffstat (limited to 'doc/developer/conf.py')
-rw-r--r--doc/developer/conf.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/doc/developer/conf.py b/doc/developer/conf.py
index e2293b2a6b..ed91ff255f 100644
--- a/doc/developer/conf.py
+++ b/doc/developer/conf.py
@@ -188,7 +188,7 @@ html_favicon = '../figures/frr-logo-icon.png'
# 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,
# so a file named "default.css" will overwrite the builtin "default.css".
-#html_static_path = ['_static']
+html_static_path = ['_static']
# Add any extra paths that contain custom files (such as robots.txt or
# .htaccess) here, relative to this directory. These files are copied
@@ -339,3 +339,5 @@ def setup(app):
# object type for FRR CLI commands, can be extended to document parent CLI
# node later on
app.add_object_type('clicmd', 'clicmd')
+ # css overrides for HTML theme
+ app.add_stylesheet('overrides.css')