3

有没有办法改变狮身人面像网页上字幕的颜色?我将:caption:指令与toctree一起使用,但标题的颜色与侧边栏几乎相同。作为参考,这里是带有难以看到标题的页面的链接,这是我的索引文件:

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
4

2 回答 2

1

您可以向 span.caption-text 添加颜色属性吗?例如在你的source/_static/custom.css看跌期权中:

@import url("default.css");
span.caption-text {
  color: red;
}
于 2015-07-11T14:06:13.773 回答
1

@aflp91 确实会更改侧栏中的标题文本,还会更改其中的标题文本toctree

如果您希望在侧边栏中更改标题颜色 - 并且仅在侧边栏中 - 您应该添加这个

.wy-menu > .caption > span.caption-text {
  color: #ffffff;
}
于 2019-05-31T05:07:45.470 回答