如何更改 doxygen;s 的背景图片?

How to change doxygen;s background images?

我正在尝试自定义 Doxygen 的输出,但我被菜单栏卡住了。

我生成了 doxygen 由 运行

提供的自定义 css 和 html 文件

doxygen -w html header.html footer.html customdoxygen.css

在浏览器中,您可以看到条形图的外观来自名为 tab_b.png 的背景图片。如果您手动禁用它,您将能够看到对 css 的修改(就像那个难看的绿色)。我想知道是否可以一起编辑或删除它们(显然除了以编程方式更改 html 输出文件夹之外)。

在您的 css 中创建以下规则:

.sm-dox {
   background-image: none!important;
   background-color: yellow;
}