JavaFX ListCell selected color

Viewed 4427

I'm trying to change color of selected items in ListView with CSS.

.contact-list-cell:selected {
    -fx-background-color: green;
}
.list-view:focused .contact-list-cell:selected {
    -fx-background-color: green;
}

But it works only when parent ListView looses focus.

I know that standard JavaFX Caspian theme uses .list-view:focused .list-cell:focused:selected:etc{...} selectors. But I just can't find simple combination that will do the thing.

2 Answers
Related