diff options
| author | Mark Otto <[email protected]> | 2013-09-05 15:10:56 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2013-09-05 15:10:56 -0700 |
| commit | b51579241fd37924b0d844f850b8c800f478a763 (patch) | |
| tree | 46abe2bbbb9e7185b13769065d0dc23714d03616 /dist/css/bootstrap.css | |
| parent | ac244040d1054961f1e9a7a425a459ae0f30700c (diff) | |
| download | bootstrap-b51579241fd37924b0d844f850b8c800f478a763.tar.xz bootstrap-b51579241fd37924b0d844f850b8c800f478a763.zip | |
account for last child bottom border; use 0 instead of none
Diffstat (limited to 'dist/css/bootstrap.css')
| -rw-r--r-- | dist/css/bootstrap.css | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/dist/css/bootstrap.css b/dist/css/bootstrap.css index 4f5bbfe8d..9e8f4c9e4 100644 --- a/dist/css/bootstrap.css +++ b/dist/css/bootstrap.css @@ -5447,6 +5447,37 @@ a.list-group-item:focus { border-top: 1px solid #dddddd; } +.panel > .table-bordered { + border: 0; +} + +.panel > .table-bordered > thead > tr > th:first-child, +.panel > .table-bordered > tbody > tr > th:first-child, +.panel > .table-bordered > tfoot > tr > th:first-child, +.panel > .table-bordered > thead > tr > td:first-child, +.panel > .table-bordered > tbody > tr > td:first-child, +.panel > .table-bordered > tfoot > tr > td:first-child { + border-left: 0; +} + +.panel > .table-bordered > thead > tr > th:last-child, +.panel > .table-bordered > tbody > tr > th:last-child, +.panel > .table-bordered > tfoot > tr > th:last-child, +.panel > .table-bordered > thead > tr > td:last-child, +.panel > .table-bordered > tbody > tr > td:last-child, +.panel > .table-bordered > tfoot > tr > td:last-child { + border-right: 0; +} + +.panel > .table-bordered > thead > tr:last-child > th, +.panel > .table-bordered > tbody > tr:last-child > th, +.panel > .table-bordered > tfoot > tr:last-child > th, +.panel > .table-bordered > thead > tr:last-child > td, +.panel > .table-bordered > tbody > tr:last-child > td, +.panel > .table-bordered > tfoot > tr:last-child > td { + border-bottom: 0; +} + .panel-heading { padding: 10px 15px; border-bottom: 1px solid transparent; |
