有没有办法在sphinx网页上更改字幕的颜色?我在 toctree 中使用:caption:
指令,但标题与侧边栏的颜色几乎相同。作为参考here是指向难以看到标题的页面的链接,这是我的索引文件:
Contents
============
.. toctree::
:caption: User Documentation
:maxdepth: 2
overview
installation
tutorial
.. toctree::
:maxdepth: 2
:caption: Developer Documentation
dev/conventions
dev/enviroment
dev/docs
dev/site
doc/modules
* :ref:`genindex`
* :ref:`modindex`
.. toctree::
:maxdepth: 2
:caption: Support
trouble/faq
trouble/issuetracker
trouble/contact
答案 0 :(得分:1)
您可以在span.caption-text中添加颜色吗?例如,在source/_static/custom.css
放置:
@import url("default.css");
span.caption-text {
color: red;
}
答案 1 :(得分:0)
@ aflp91确实会更改边栏中的标题文本,而且也会更改toctree
中的标题文本。
如果您想在边栏中更改标题颜色-仅在边栏中-您应该添加
.wy-menu > .caption > span.caption-text {
color: #ffffff;
}