aboutsummaryrefslogtreecommitdiff
path: root/docs/assets
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2012-07-19 21:25:24 -0700
committerMark Otto <[email protected]>2012-07-19 21:25:24 -0700
commit3c1a0fbda40d06ab0b89d07ad808aa6975c8381d (patch)
treedc8221d626ff2f7935adae188a9f28b7da5f0e0d /docs/assets
parent89d7ec5290912ddd762f743f450b58b865afc6c3 (diff)
downloadbootstrap-3c1a0fbda40d06ab0b89d07ad808aa6975c8381d.tar.xz
bootstrap-3c1a0fbda40d06ab0b89d07ad808aa6975c8381d.zip
fixes #4103: simpler fix for tfoot in .table-border
Diffstat (limited to 'docs/assets')
-rw-r--r--docs/assets/css/bootstrap.css35
1 files changed, 33 insertions, 2 deletions
diff --git a/docs/assets/css/bootstrap.css b/docs/assets/css/bootstrap.css
index b9ea3b7d0..bc52f0f86 100644
--- a/docs/assets/css/bootstrap.css
+++ b/docs/assets/css/bootstrap.css
@@ -1753,6 +1753,35 @@ table {
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
+ /* thead:last-child tr:last-child th:first-child,
+ tbody:last-child tr:last-child td:first-child,
+ tfoot tr:last-child td:first-child {
+ -webkit-border-bottom-left-radius: 4px;
+ border-bottom-left-radius: 4px;
+ -moz-border-radius-bottomleft: 4px;
+ }
+
+ tfoot ~ tbody:last-child tr:last-child td:first-child {
+ -webkit-border-bottom-left-radius: 0;
+ border-bottom-left-radius: 0;
+ -moz-border-radius-bottomleft: 0;
+ }
+
+ thead:last-child tr:last-child th:last-child,
+ tbody:last-child tr:last-child td:last-child,
+ tfoot tr:last-child td:last-child {
+ -webkit-border-bottom-right-radius: 4px;
+ border-bottom-right-radius: 4px;
+ -moz-border-radius-bottomright: 4px;
+ }
+
+ tfoot ~ tbody:last-child tr:last-child td:last-child {
+ -webkit-border-bottom-right-radius: 0;
+ border-bottom-right-radius: 0;
+ -moz-border-radius-bottomright: 0;
+ }
+*/
+
}
.table-bordered th,
@@ -1787,7 +1816,8 @@ table {
}
.table-bordered thead:last-child tr:last-child th:first-child,
-.table-bordered tbody:last-child tr:last-child td:first-child {
+.table-bordered tbody:last-child tr:last-child td:first-child,
+.table-bordered tfoot:last-child tr:last-child td:first-child {
-webkit-border-radius: 0 0 0 4px;
-moz-border-radius: 0 0 0 4px;
border-radius: 0 0 0 4px;
@@ -1797,7 +1827,8 @@ table {
}
.table-bordered thead:last-child tr:last-child th:last-child,
-.table-bordered tbody:last-child tr:last-child td:last-child {
+.table-bordered tbody:last-child tr:last-child td:last-child,
+.table-bordered tfoot:last-child tr:last-child td:last-child {
-webkit-border-bottom-right-radius: 4px;
border-bottom-right-radius: 4px;
-moz-border-radius-bottomright: 4px;