They say a picture is worth a thousand words:
.
I have successfully applied custom CSS to this table, but I am having trouble filling the upper-right corner. Despite attempting to change the background of the scroll-pane, I have not been able to achieve the desired result.
Here is the current CSS code being used:
.table-row-cell {
-fx-background-color: rgba(71, 81, 80,0.5);
}
.table-row-cell:hover {
-fx-background-color: rgba(40, 96, 93, 0.50);
}
.table-row-cell:hover:empty {
-fx-background-color: rgba(71, 81, 80,0.5);
}
.table-row-cell .table-cell {
-fx-border-width: 0px;
}
.table-view {
-fx-border-color: rgba(1, 11, 12, 1);
-fx-background-radius: 2;
-fx-border-width: 1px;
-fx-border-radius: 2;
-fx-background-color: rgba(71, 81, 80,0.2);
-fx-background-insets: 0;
}
.table-view .column-header {
-fx-background-color: rgba(1, 11, 12, 1);
}
.scroll-bar {
-fx-background-color: rgba(1, 11, 12, 1);
}
.scroll-bar .increment-button:hover {
-fx-background-color: rgba(1, 11, 12, 1);
}
.scroll-bar .decrement-button:hover {
-fx-background-color: rgba(1, 11, 12, 1);
}
.scroll-bar .thumb {
-fx-background-color: rgba(71, 81, 80,0.5);
}
Any suggestions or assistance would be greatly appreciated.