Reading blogs and articles on using css in javafx, I see class selectors such as
.table-row-cell:empty {
-fx-background-color: -fx-base;
}
.table-row-cell:empty .table-cell {
-fx-border-width: 0px;
}
being used, and indeed they work in my own code. However I can't find anywhere where these are documented - it seems like the official documentation has no mention of them: http://docs.oracle.com/javafx/2/api/javafx/scene/doc-files/cssref.html.