diff options
| author | Mark Otto <[email protected]> | 2013-12-15 17:22:55 -0800 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2013-12-15 17:22:55 -0800 |
| commit | 4ee93c9f8529cfeef56d4178b91e1ddcb0bff09c (patch) | |
| tree | 7407b67f271ec66fc97b7fd44e1bcac671e58508 /dist/css/bootstrap.css | |
| parent | 2979e4bcea25c428c801d77153dc0f663618ce20 (diff) | |
| download | bootstrap-4ee93c9f8529cfeef56d4178b91e1ddcb0bff09c.tar.xz bootstrap-4ee93c9f8529cfeef56d4178b91e1ddcb0bff09c.zip | |
Fixes #10492 again, this time for last row's corners on striped tables
Diffstat (limited to 'dist/css/bootstrap.css')
| -rw-r--r-- | dist/css/bootstrap.css | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/dist/css/bootstrap.css b/dist/css/bootstrap.css index 40f22ae8a..bead1c963 100644 --- a/dist/css/bootstrap.css +++ b/dist/css/bootstrap.css @@ -4791,6 +4791,18 @@ a.list-group-item-info.active:focus { margin-bottom: 0; border: 0; } +.panel > .table-striped > tbody > tr:last-child td:first-child, +.panel > .table-responsive > .table-striped > tbody > tr:last-child td:first-child, +.panel > .table-striped > tbody > tr:last-child th:first-child, +.panel > .table-responsive > .table-striped > tbody > tr:last-child th:first-child { + border-bottom-left-radius: 3px; +} +.panel > .table-striped > tbody > tr:last-child td:last-child, +.panel > .table-responsive > .table-striped > tbody > tr:last-child td:last-child, +.panel > .table-striped > tbody > tr:last-child th:last-child, +.panel > .table-responsive > .table-striped > tbody > tr:last-child th:last-child { + border-bottom-left-radius: 3px; +} .panel-heading { padding: 10px 15px; border-bottom: 1px solid transparent; |
