Something went wrong while setting issue due date.
tr.active on .table
Closed
tr.active on .table
Created by: JamesMessinger
It would be nice if there was a tr.active
class for <table>
s. Regardless of whether the .table-striped
or .table-hover
classes are used, it is still a common need to highlight a particular table row to indicate that it's "active" or "selected".
I recommend something like this in tables.less:
.table {
tbody {
> tr.active > td,
> tr.active > th {
background-color: darken(@tableBackgroundHover, 10%);
}
}
}