tableview - JavaFX8 - Remove highlighting of selected row -
when click on row within tableview
row highlighted blue. how possible disable feature? i've tried set background white, problem row-color isn't white in every row. know do?
best regards
edit:
in image below see blue color of second row. highlighting should removed.
if want (i agree @kleopatra in comments make life difficult user) can revert colors selected rows external css file:
.table-row-cell:filled:selected { -fx-background: -fx-control-inner-background ; -fx-background-color: -fx-table-cell-border-color, -fx-background ; -fx-background-insets: 0, 0 0 1 0 ; -fx-table-cell-border-color: derive(-fx-color, 5%); } .table-row-cell:odd:filled:selected { -fx-background: -fx-control-inner-background-alt ; }
Comments
Post a Comment