深色主题下“Time”输入图标为黑色

查看:

预计它会是一种浅色,可能是 var(--primary):slight_smile:


我注意到它使用了时间输入,我之前不知道有这个功能,所以我不知道它是否可以更改,特别是如果设计因设备/浏览器而异的话 :thinking:


我在 Windows 11 上使用桌面版 Chrome 108.0.5359.125。

1 个赞

我没有看到第二个时间指示器:

这是什么设备/操作系统/浏览器组合?

2 个赞

我编辑了我的主题以添加此信息:Windows 11 上的桌面版 Chrome 108.0.5359.125。

我在 Chrome 上可以重现此问题。它会为 input type="time" 添加一个时钟。

1 个赞

https://stackoverflow.com/questions/63002686/how-do-i-change-the-color-of-the-small-clock-icon-that-comes-with-the-html-input#comment119665982_64184578 适用于基于 Webkit 的浏览器解决方案。

如果您不想看到时钟,您可以随时

input[type="time"]::-webkit-calendar-picker-indicator {
    background: none;
}
2 个赞