diff options
| author | Mark Otto <[email protected]> | 2012-08-07 22:50:49 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2012-08-07 22:50:49 -0700 |
| commit | 4eee78e0513c2c08b26fb57c43d57b9cb0857a87 (patch) | |
| tree | 5dc055852593f5673023e8e0c4e57ca3f3c840e9 /docs | |
| parent | a525a6fe33afde7d4ab4a0febaaed76ff0393505 (diff) | |
| download | bootstrap-4eee78e0513c2c08b26fb57c43d57b9cb0857a87.tar.xz bootstrap-4eee78e0513c2c08b26fb57c43d57b9cb0857a87.zip | |
fixes #4304: more specific selectors on table border classes to override .table-striped
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/assets/css/bootstrap.css | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/docs/assets/css/bootstrap.css b/docs/assets/css/bootstrap.css index 6bb9e1545..b2e903cc9 100644 --- a/docs/assets/css/bootstrap.css +++ b/docs/assets/css/bootstrap.css @@ -1774,18 +1774,6 @@ table { border-top: 2px solid #dddddd; } -.table .success td { - background-color: #dff0d8; -} - -.table .error td { - background-color: #f2dede; -} - -.table .info td { - background-color: #d9edf7; -} - .table-condensed th, .table-condensed td { padding: 4px 5px; @@ -1874,8 +1862,8 @@ table { background-color: #f9f9f9; } -.table-hover tbody tr:hover td, -.table-hover tbody tr:hover th { +.table-hover tr:hover td, +.table-hover tr:hover th { background-color: #f5f5f5; } @@ -2030,6 +2018,18 @@ table .span24 { margin-left: 0; } +.table tbody .success td { + background-color: #dff0d8; +} + +.table tbody .error td { + background-color: #f2dede; +} + +.table tbody .info td { + background-color: #d9edf7; +} + [class^="icon-"], [class*=" icon-"] { display: inline-block; |
