I am in need of assistance with a problem I am facing. Recently, I started learning the Vaadin framework and I am trying to apply CSS to the row headers (first cell of each row), but so far I have not had any success. Below is the code that I have been using. Any help or suggestions would be greatly appreciated. Thank you!
Here is the SCSS code I have been using for the row headers:
.v-table-row-cell-content-rowheader {
background: black !important;
}
This is how I have defined my table:
Table customizedTable = new Table();
customizedTable.addStyleName(Reindeer.TABLE_BORDERLESS);
customizedTable.setStyleName("no-vertical-lines-or-border");