我目前正在尝试使用CSS从我的JavaFX应用程序中的文本区域中删除焦点颜色,但是,它似乎不在我可以使用的样式的自动完成列表中。为什么会这样?Autocomplete list without -fx-focus-color
答案 0 :(得分:0)
您应该查看this以获取可以使用的受支持样式列表。
在JavaFX中,focused
是一个伪类。因此,你应该做类似的事情:
.ingredients:focused {
-fx-background-color: transparent; /* Or the color when not focused */
}