Documentation/conf.py: fix for css files in newer Sphinx

This commit is contained in:
Adrien Bourmault 2024-03-13 14:44:58 +01:00
parent 3f04a5026c
commit fbc5b3dccf
Signed by: neox
GPG Key ID: 95F65F55F682A17A
1 changed files with 3 additions and 5 deletions

View File

@ -80,11 +80,9 @@ html_theme = 'sphinx_rtd_theme'
# so a file named "default.css" will overwrite the builtin "default.css".
html_static_path = ['_static']
html_context = {
'css_files': [
'_static/theme_overrides.css', # override wide tables in RTD theme
],
}
html_css_files = [
'theme_overrides.css', # override wide tables in RTD theme
]
# Output file base name for HTML help builder.
htmlhelp_basename = 'corebootdoc'