docs: Move custom.css into the main css

There's no real separation here so one file is preferable.

We'll leave the pygments.css intact because that handles a different thing
This commit is contained in:
Fabian Homborg
2021-03-02 16:49:23 +01:00
parent 955c0003ca
commit bf801afef8
3 changed files with 28 additions and 33 deletions

View File

@@ -52,12 +52,6 @@ def setup(app):
)
lexers["fish-docs-samples"] = fish_indent_lexer
# add_css_file only appears in Sphinx 1.8.0
if hasattr(app, "add_css_file"):
app.add_css_file("custom.css")
else:
app.add_stylesheet("custom.css")
app.add_config_value("issue_url", default=None, rebuild="html")
app.add_role("issue", issue_role)