aboutsummaryrefslogtreecommitdiff
path: root/dist/css/bootstrap.css
diff options
context:
space:
mode:
authorSupergibbs <[email protected]>2014-01-30 21:49:37 -0800
committerSupergibbs <[email protected]>2014-02-05 14:29:23 -0800
commit08ff305ed7ba689238d4524b0285d37d15aaf8fa (patch)
treec07af09624ed788710f00c79f7690c91d1100460 /dist/css/bootstrap.css
parent7eb532262fbd1112215b5a547b9285794b5360ab (diff)
downloadbootstrap-08ff305ed7ba689238d4524b0285d37d15aaf8fa.tar.xz
bootstrap-08ff305ed7ba689238d4524b0285d37d15aaf8fa.zip
Added border radiuses to table when in a panel. Fixes #12461
Diffstat (limited to 'dist/css/bootstrap.css')
-rw-r--r--dist/css/bootstrap.css10
1 files changed, 10 insertions, 0 deletions
diff --git a/dist/css/bootstrap.css b/dist/css/bootstrap.css
index e64956029..2f18aade1 100644
--- a/dist/css/bootstrap.css
+++ b/dist/css/bootstrap.css
@@ -4799,6 +4799,11 @@ a.list-group-item-danger.active:focus {
.panel > .table-responsive > .table {
margin-bottom: 0;
}
+.panel > .table:first-child,
+.panel > .table-responsive:first-child > .table: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,
@@ -4819,6 +4824,11 @@ a.list-group-item-danger.active:focus {
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child {
border-top-right-radius: 3px;
}
+.panel > .table:last-child,
+.panel > .table-responsive:last-child > .table: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,