Fix stylesheet setting in theme.conf files

The intention here was probably to include basic.css from Sphinx'
basic theme, but the correct way to reference it is just "basic.css".
This is what sphinx/themes/basic/theme.conf in Sphinx itself does.

Using "css/basic.css" caused the file to be not copied, and the
reference was 404.

Change-Id: Ifd6a78cb2dce42027f404829e1865fdb90acdb4f
This commit is contained in:
Dmitry Shachnev 2023-08-05 21:11:46 +03:00
parent b301ee75bf
commit 9931511d9c
2 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
[theme]
inherit = basic
stylesheet = css/basic.css
stylesheet = basic.css
pygments_style = native
[options]

View File

@ -1,6 +1,6 @@
[theme]
inherit = openstackdocs
stylesheet = css/basic.css
stylesheet = basic.css
pygments_style = native
[options]