新主题按钮的 CSS 属性是什么?

最后一次 CSS 问题,我发誓。我的网站大部分已自定义 CSS,但我就是无法找出更改“新建主题”按钮颜色(包括悬停和非悬停状态)的 CSS 代码。

也许您可以在管理设置中通过配色方案与其他 UI 一起更改它,但我正在寻找具体的 CSS 属性。

谢谢!
Jen

1 个赞

Well the id on the button is create-topic (which since it’s an id you reference as #create-topic), and you use :hover to only apply something on hover. To change the button color you want to use background-color (if you want to change the text you’d use color).

So for example:

#create-topic {
    background-color: red;
}

#create-topic:hover {
    background-color: blue;
}
4 个赞