每当我打开我的JavaFX程序时,TableView
中的第一项周围都有一个蓝框。一旦用户点击,它就消失了。有没有办法在自定义css文件中删除它?
我已尝试在-fx-focus-color
和.root
中设置.table-row-cell
(还有更多我不记得的内容),但没有任何效果。
答案 0 :(得分:0)
我无法将颜色更改为transparent
,但我可以使用
.table-row-cell:focused{
-fx-background-insets: 0;
}