Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
目前我的 jfoenix 时间选择器中的小时单元格和分钟单元格的颜色是黑色的。每当我将鼠标悬停在两者上时,我想添加一个指针和不同的颜色。您可能会在下面看到描绘两者的图像。有人知道这个的css解决方案吗?
当前文档:https ://github.com/jfoenixadmin/JFoenix/blob/master/jfoenix/src/main/resources/css/controls/jfx-time-picker.css
在不知道 css/html 结构是什么的情况下,您可能需要这样的东西:
.time:hover { color: white; cursor: pointer; }