Currently background-color of selected row is default to #acbad4. Although you can use css to set the color of selected row, you cannot do the same for background-color. Is it true? Is there any way to do it?
tbody tr.selected {
color: white;
background-color: #eeeeee; /* Not working */
}
Thanks!