diff options
| author | Mark Otto <[email protected]> | 2013-03-14 13:29:43 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2013-03-14 13:29:43 -0700 |
| commit | 224296f6950ce0e5b00ba88aacf54fe4c638f14a (patch) | |
| tree | 7366fd9df77e20dc324c2728a951b9446131232d /docs/assets/css/bootstrap.css | |
| parent | 00169b48bd69ee0e203cfb557de99887811b924e (diff) | |
| download | bootstrap-224296f6950ce0e5b00ba88aacf54fe4c638f14a.tar.xz bootstrap-224296f6950ce0e5b00ba88aacf54fe4c638f14a.zip | |
Fixes #7281: make tables super specific for hovers and striping to avoid nesting issues
Diffstat (limited to 'docs/assets/css/bootstrap.css')
| -rw-r--r-- | docs/assets/css/bootstrap.css | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/docs/assets/css/bootstrap.css b/docs/assets/css/bootstrap.css index d8a451773..c5121d7cb 100644 --- a/docs/assets/css/bootstrap.css +++ b/docs/assets/css/bootstrap.css @@ -967,13 +967,13 @@ th { border-top-right-radius: 4px; } -.table-striped tbody > tr:nth-child(odd) > td, -.table-striped tbody > tr:nth-child(odd) > th { +.table-striped > tbody > tr:nth-child(odd) > td, +.table-striped > tbody > tr:nth-child(odd) > th { background-color: #f9f9f9; } -.table-hover tbody tr:hover > td, -.table-hover tbody tr:hover > th { +.table-hover > tbody > tr:hover > td, +.table-hover > tbody > tr:hover > th { background-color: #f5f5f5; } @@ -988,27 +988,27 @@ table th[class^="span"] { float: none; } -.table tbody tr.success > td { +.table > tbody > tr.success > td { background-color: #dff0d8; } -.table tbody tr.error > td { +.table > tbody > tr.error > td { background-color: #f2dede; } -.table tbody tr.warning > td { +.table > tbody > tr.warning > td { background-color: #fcf8e3; } -.table-hover tbody tr.success:hover > td { +.table-hover > tbody > tr.success:hover > td { background-color: #d0e9c6; } -.table-hover tbody tr.error:hover > td { +.table-hover > tbody > tr.error:hover > td { background-color: #ebcccc; } -.table-hover tbody tr.warning:hover > td { +.table-hover > tbody > tr.warning:hover > td { background-color: #faf2cc; } |
