如果您单击此链接,它会将您带到他们页面上的一些示例。
https://ng.ant.design/components/button/en
我可以访问按钮并更改颜色,但不能更改实际的蓝色边框。我尝试过 :active、:hover、:focus 等。
这就是我访问某些自定义 css 按钮的方式
.ant-btn-circle {
background-color: $theme-foreground !important;
color: rgb(var(--MainColor)) !important;
}
.ant-btn-circle:focus {
background-color: rgb(var(--MainColor)) !important;
color: $theme-foreground !important;
outline: 0 !important;
}
大纲部分似乎不起作用......有什么提示吗?
我看到这样的东西有蓝色,但我不知道它是什么。--antd-wave-shadow-color
html {
font-family: sans-serif;
line-height: 1.15;
-webkit-text-size-adjust: 100%;
-ms-text-size-adjust: 100%;
-ms-overflow-style: scrollbar;
--antd-wave-shadow-color: #1890ff;
}