jdadwilson
09-03-2015, 04:12 AM
I am using Bootstrap to revamp one of my websites. I have implemented the table function to include table-striped and table-hover. To stay uniform with the present site I included the following Bootstrap overrides in myBootstrap.css file.
.table-hover tbody tr:hover td,
.table-hover tbody tr:hover th {
background-color: @roll_over;
}
.table-striped > tbody > tr:nth-child(even) > td,
.table-striped > tbody > tr:nth-child(even) > th {
background-color: @tabl_rowevn;
}
These change work... kinda. The striping works as it should but the roll-over only work on the odd rows.
TIA for any assistance.
jdadwilson
.table-hover tbody tr:hover td,
.table-hover tbody tr:hover th {
background-color: @roll_over;
}
.table-striped > tbody > tr:nth-child(even) > td,
.table-striped > tbody > tr:nth-child(even) > th {
background-color: @tabl_rowevn;
}
These change work... kinda. The striping works as it should but the roll-over only work on the odd rows.
TIA for any assistance.
jdadwilson