more nesting in table.less

This commit is contained in:
Chris Rebert 2013-11-06 18:38:27 -08:00
parent 798e64cebf
commit 463343af63
1 changed files with 12 additions and 8 deletions

View File

@ -152,14 +152,18 @@ table {
// Exact selectors below required to override `.table-striped` and prevent
// inheritance to nested tables.
.table > thead > tr,
.table > tbody > tr,
.table > tfoot > tr {
> td.active,
> th.active,
&.active > td,
&.active > th {
background-color: @table-bg-active;
.table {
> thead,
> tbody,
> tfoot {
> tr {
> td.active,
> th.active,
&.active > td,
&.active > th {
background-color: @table-bg-active;
}
}
}
}