diff options
| author | Mark Otto <[email protected]> | 2013-07-25 10:01:42 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2013-07-25 10:01:42 -0700 |
| commit | 768e7edabf0613b1537ea2d5eb422b2069f4466c (patch) | |
| tree | 73d3b19d8508e9439be460aee9a5cc1c1da18153 /less | |
| parent | d4cd7efce6214d6a02b2d1254a512c03964c0459 (diff) | |
| download | bootstrap-768e7edabf0613b1537ea2d5eb422b2069f4466c.tar.xz bootstrap-768e7edabf0613b1537ea2d5eb422b2069f4466c.zip | |
fixes #8571 completely: add better th support for table classes
Diffstat (limited to 'less')
| -rw-r--r-- | less/tables.less | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/less/tables.less b/less/tables.less index 5f1c4dbf4..68e33dccd 100644 --- a/less/tables.less +++ b/less/tables.less @@ -160,24 +160,28 @@ table { .table > tfoot > tr { > td.active, > th.active, - &.active > td { + &.active > td, + &.active > th { background-color: @table-bg-hover; } > td.success, > th.success, - &.success > td { + &.success > td, + &.success > th { background-color: @state-success-bg; border-color: @state-success-border; } > td.danger, > th.danger, - &.danger > td { + &.danger > td, + &.danger > th { background-color: @state-danger-bg; border-color: @state-danger-border; } > td.warning, > th.warning, - &.warning > td { + &.warning > td, + &.warning > th { background-color: @state-warning-bg; border-color: @state-warning-border; } |
