Skip to content

Commit 851db45

Browse files
committed
Update sphinx conf.py
- separate out the css files from html_context to html_css_files as the css was not picking up. Signed-off-by: Chin Yeung Li <[email protected]>
1 parent 37e8b4f commit 851db45

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

docs/source/conf.py

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -52,12 +52,13 @@
5252
html_static_path = ['_static']
5353

5454
html_context = {
55-
'css_files': [
56-
'_static/theme_overrides.css', # override wide tables in RTD theme
57-
],
5855
"display_github": True,
5956
"github_user": "nexB",
6057
"github_repo": "nexb-skeleton",
6158
"github_version": "develop", # branch
6259
"conf_py_path": "/docs/source/", # path in the checkout to the docs root
63-
}
60+
}
61+
62+
html_css_files = [
63+
'_static/theme_overrides.css'
64+
]

0 commit comments

Comments
 (0)