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 /dist/css/bootstrap.css | |
| parent | d4cd7efce6214d6a02b2d1254a512c03964c0459 (diff) | |
| download | bootstrap-768e7edabf0613b1537ea2d5eb422b2069f4466c.tar.xz bootstrap-768e7edabf0613b1537ea2d5eb422b2069f4466c.zip | |
fixes #8571 completely: add better th support for table classes
Diffstat (limited to 'dist/css/bootstrap.css')
| -rw-r--r-- | dist/css/bootstrap.css | 20 |
1 files changed, 16 insertions, 4 deletions
diff --git a/dist/css/bootstrap.css b/dist/css/bootstrap.css index ca6082801..8ec70167a 100644 --- a/dist/css/bootstrap.css +++ b/dist/css/bootstrap.css @@ -1198,7 +1198,10 @@ table th[class^="col-"] { .table > tfoot > tr > th.active, .table > thead > tr.active > td, .table > tbody > tr.active > td, -.table > tfoot > tr.active > td { +.table > tfoot > tr.active > td, +.table > thead > tr.active > th, +.table > tbody > tr.active > th, +.table > tfoot > tr.active > th { background-color: #f5f5f5; } @@ -1210,7 +1213,10 @@ table th[class^="col-"] { .table > tfoot > tr > th.success, .table > thead > tr.success > td, .table > tbody > tr.success > td, -.table > tfoot > tr.success > td { +.table > tfoot > tr.success > td, +.table > thead > tr.success > th, +.table > tbody > tr.success > th, +.table > tfoot > tr.success > th { background-color: #dff0d8; border-color: #d6e9c6; } @@ -1223,7 +1229,10 @@ table th[class^="col-"] { .table > tfoot > tr > th.danger, .table > thead > tr.danger > td, .table > tbody > tr.danger > td, -.table > tfoot > tr.danger > td { +.table > tfoot > tr.danger > td, +.table > thead > tr.danger > th, +.table > tbody > tr.danger > th, +.table > tfoot > tr.danger > th { background-color: #f2dede; border-color: #eed3d7; } @@ -1236,7 +1245,10 @@ table th[class^="col-"] { .table > tfoot > tr > th.warning, .table > thead > tr.warning > td, .table > tbody > tr.warning > td, -.table > tfoot > tr.warning > td { +.table > tfoot > tr.warning > td, +.table > thead > tr.warning > th, +.table > tbody > tr.warning > th, +.table > tfoot > tr.warning > th { background-color: #fcf8e3; border-color: #fbeed5; } |
