diff options
| author | Mark Otto <[email protected]> | 2012-02-21 23:00:02 -0800 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2012-02-21 23:00:02 -0800 |
| commit | 9b524a16e9cb5d8c9e0a6c4c7b83a3a881e415ee (patch) | |
| tree | 39a3022e521a8adcd14daaadba8280a598bf814b /docs/assets/css/bootstrap.css | |
| parent | 917df6703cf316f6609d3ef3b9b35fb250c30472 (diff) | |
| download | bootstrap-9b524a16e9cb5d8c9e0a6c4c7b83a3a881e415ee.tar.xz bootstrap-9b524a16e9cb5d8c9e0a6c4c7b83a3a881e415ee.zip | |
clear up table styles and docs to fix rowspan and colspan issues for bordered tables, per #1918
Diffstat (limited to 'docs/assets/css/bootstrap.css')
| -rw-r--r-- | docs/assets/css/bootstrap.css | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/docs/assets/css/bootstrap.css b/docs/assets/css/bootstrap.css index 912be887a..45ae99964 100644 --- a/docs/assets/css/bootstrap.css +++ b/docs/assets/css/bootstrap.css @@ -1228,20 +1228,19 @@ table { } .table-bordered { border: 1px solid #ddd; + border-left: 0; border-collapse: separate; *border-collapse: collapsed; -webkit-border-radius: 4px; -moz-border-radius: 4px; border-radius: 4px; } -.table-bordered th + th, -.table-bordered td + td, -.table-bordered th + td, -.table-bordered td + th { +.table-bordered th, .table-bordered td { border-left: 1px solid #ddd; } .table-bordered thead:first-child tr:first-child th, .table-bordered tbody:first-child tr:first-child th, .table-bordered tbody:first-child tr:first-child td { border-top: 0; + border-bottom: 1px solid #ddd; } .table-bordered thead:first-child tr:first-child th:first-child, .table-bordered tbody:first-child tr:first-child td:first-child { -webkit-border-radius: 4px 0 0 0; |
