Reputation: 379
I´m using a default TableView in JavaFX8, but I need to remove the color of striped rows. How can I do this rewriten my css ?
Upvotes: 0
Views: 1193
Reputation: 209684
Use
.table-view {
-fx-control-inner-background-alt: -fx-control-inner-background ;
}
in an external CSS file.
Upvotes: 8