Try something like this in your theme CSS:
.mx-datagrid .mx-datagrid-body-table .selected td { background-color: #1B3B7F; }
Check your theme layout.css for tableRowOdd and tableRowEven. Here you can specify the styling of these rows. See also the now a bit old documentation about theming here.
When you are using bootstrap you could look for some examples in the bootstrap themes on how to style these.
Regards,
Ronald
For Bootstrap themes add some custom css.
.mx-datagrid .mx-datagrid-body-table .selected td {
background-color: grey;
color: white;
}
Regards,
Luch
Hi,
I have a similar situation.
Do I have to add the above mentioned code in the main.css file within this snippet below?