Reputation: 811
I am trying to change the blue border colour when the row is selected. How can I change this colour?
Upvotes: 0
Views: 503
Reputation: 1329
try to add this:
.table-row-cell:selected {
-fx-table-cell-border-color: transparent;
}
Upvotes: 2