aboutsummaryrefslogtreecommitdiff
path: root/dist/css/bootstrap.css
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2014-09-04 19:06:01 -0700
committerMark Otto <[email protected]>2014-09-04 19:06:01 -0700
commit5b7a5f84d4255b09778bdc9b3502660cff511a90 (patch)
tree8b14c4331ce532187126e187f7c110519157aeca /dist/css/bootstrap.css
parentce7363e0dbdd2ebe03f58acb37fbe493ebcd1db5 (diff)
downloadbootstrap-5b7a5f84d4255b09778bdc9b3502660cff511a90.tar.xz
bootstrap-5b7a5f84d4255b09778bdc9b3502660cff511a90.zip
Fixes #14437: Round the corners of table rows in panels as well as the cells
Diffstat (limited to 'dist/css/bootstrap.css')
-rw-r--r--dist/css/bootstrap.css14
1 files changed, 14 insertions, 0 deletions
diff --git a/dist/css/bootstrap.css b/dist/css/bootstrap.css
index 607edc39a..96b41aa61 100644
--- a/dist/css/bootstrap.css
+++ b/dist/css/bootstrap.css
@@ -5158,6 +5158,13 @@ a.list-group-item-danger.active:focus {
border-top-left-radius: 3px;
border-top-right-radius: 3px;
}
+.panel > .table:first-child > thead:first-child > tr:first-child,
+.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,
+.panel > .table:first-child > tbody:first-child > tr:first-child,
+.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child {
+ border-top-left-radius: 3px;
+ border-top-right-radius: 3px;
+}
.panel > .table:first-child > thead:first-child > tr:first-child td:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,
@@ -5183,6 +5190,13 @@ a.list-group-item-danger.active:focus {
border-bottom-right-radius: 3px;
border-bottom-left-radius: 3px;
}
+.panel > .table:last-child > tbody:last-child > tr:last-child,
+.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,
+.panel > .table:last-child > tfoot:last-child > tr:last-child,
+.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child {
+ border-bottom-right-radius: 3px;
+ border-bottom-left-radius: 3px;
+}
.panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,