diff options
| author | Mark Otto <[email protected]> | 2013-11-28 12:49:51 -0800 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2013-11-28 12:49:51 -0800 |
| commit | c13524e7e0f3d2a62935bbe2cb57c1388e04e052 (patch) | |
| tree | c052ecbf0c507b3d79532a516e57a491c19870be /dist/css/bootstrap.css | |
| parent | 9f68a5b241fff2adce3b95b5c5b486e84a1d88d5 (diff) | |
| download | bootstrap-c13524e7e0f3d2a62935bbe2cb57c1388e04e052.tar.xz bootstrap-c13524e7e0f3d2a62935bbe2cb57c1388e04e052.zip | |
Fixes #11553: Prevent double border on tables in panels without thead content
Diffstat (limited to 'dist/css/bootstrap.css')
| -rw-r--r-- | dist/css/bootstrap.css | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/dist/css/bootstrap.css b/dist/css/bootstrap.css index 30dfb4856..e5ce19d47 100644 --- a/dist/css/bootstrap.css +++ b/dist/css/bootstrap.css @@ -5585,6 +5585,11 @@ a.list-group-item.active:focus .list-group-item-text { border-top: 1px solid #dddddd; } +.panel > .table > tbody:first-child th, +.panel > .table > tbody:first-child td { + border-top: 0; +} + .panel > .table-bordered, .panel > .table-responsive > .table-bordered { border: 0; |
