以下 css 将选择所有具有“新”样式类的单元格并将其颜色设置为绿色
.table-view .new:filled {
-fx-background-color: green;
}
但是在选择时,它保持绿色,我想要的是尊重通常的选择颜色,所以有没有类似的东西:
.table-view .new:filled:not(selected){
-fx-background-color: green;
}
我也注意到一个奇怪的行为,下面的css
.table-view :selected{
-fx-background-color: yellow;
}
通常会将 talbe 的选择颜色变为黄色,其中用于设置更新单元格的选择颜色的以下 css 不起作用
.table-view .updated:selected{
-fx-background-color: yellow;
}