I'm using the bootstrap and a table with
table-striped
And you're getting a very bright zebra, how do I change the zebra colors?
I'm using the bootstrap and a table with
table-striped
And you're getting a very bright zebra, how do I change the zebra colors?
In your css file, overwrite the table-stripes class:
.table-striped>tbody>tr:nth-child(odd)>td,
.table-striped>tbody>tr:nth-child(odd)>th {
background-color: red;
}
Change the color you want to change the network by the color you want.