When a row is checked, the whole row turns black

24 views Asked by At

When using checkbox in bootstrap-table every row that is selected turns black, how can I manage the colors or a I missing a library or something

bootstrap-table checked

I tried a CSS attribute change but nothing happened

1

There are 1 answers

0
Suditi Choudhary On

Since you did not share the CSS file, I am using an example of "selected" class for your td element. Do override the background color of your row like this:

.selected tr{
   background-color:white !important;
 }