我需要在 Windows 高对比度模式下将禁用的材质按钮边框和颜色设为绿色。css 更改在 chrome 上运行良好,但在 firefox 上遇到了一些问题。无论边框应用什么颜色,它都会自动变成白色。有什么方法可以将firefox的颜色覆盖为绿色?
/*For chrome, working as expected */
@media (forced-colors: active) {
material-button[disabled] {
forced-color-adjust: none;
border: 1px solid GrayText;
}
}
/* For Firefox, not working */
@media (prefers-contrast: more) {
material-button[disabled] {
border: 1px solid GrayText;
}
}
有人可以帮忙吗?