diff options
Diffstat (limited to 'documentation/conf.py')
-rw-r--r-- | documentation/conf.py | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/documentation/conf.py b/documentation/conf.py index 83dea72e41..e1a7e5e3dd 100644 --- a/documentation/conf.py +++ b/documentation/conf.py | |||
@@ -103,12 +103,13 @@ html_logo = 'sphinx-static/YoctoProject_Logo_RGB.jpg' | |||
103 | html_static_path = ['sphinx-static'] | 103 | html_static_path = ['sphinx-static'] |
104 | 104 | ||
105 | html_context = { | 105 | html_context = { |
106 | 'css_files': [ | ||
107 | '_static/theme_overrides.css', | ||
108 | ], | ||
109 | 'current_version': current_version, | 106 | 'current_version': current_version, |
110 | } | 107 | } |
111 | 108 | ||
109 | # Add customm CSS and JS files | ||
110 | html_css_files = ['theme_overrides.css'] | ||
111 | html_js_files = ['switchers.js'] | ||
112 | |||
112 | # Hide 'Created using Sphinx' text | 113 | # Hide 'Created using Sphinx' text |
113 | html_show_sphinx = False | 114 | html_show_sphinx = False |
114 | 115 | ||