aboutsummaryrefslogtreecommitdiff
path: root/docs/assets/css/bootstrap.css
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2012-07-19 21:06:42 -0700
committerMark Otto <[email protected]>2012-07-19 21:06:42 -0700
commit89d7ec5290912ddd762f743f450b58b865afc6c3 (patch)
treeab8b5001bdee9df4f8c9144315459a52dca5b69a /docs/assets/css/bootstrap.css
parent6c23fff4d6d06953ae9804a4146cdc3fe2dd5a2e (diff)
downloadbootstrap-89d7ec5290912ddd762f743f450b58b865afc6c3.tar.xz
bootstrap-89d7ec5290912ddd762f743f450b58b865afc6c3.zip
fixes #4102: properly round top left corners of .table-border with caption/colgroup; also fix css tests page layout and footer
Diffstat (limited to 'docs/assets/css/bootstrap.css')
-rw-r--r--docs/assets/css/bootstrap.css18
1 files changed, 18 insertions, 0 deletions
diff --git a/docs/assets/css/bootstrap.css b/docs/assets/css/bootstrap.css
index 239de594a..b9ea3b7d0 100644
--- a/docs/assets/css/bootstrap.css
+++ b/docs/assets/css/bootstrap.css
@@ -1803,6 +1803,24 @@ table {
-moz-border-radius-bottomright: 4px;
}
+.table-bordered caption + thead tr:first-child th:first-child,
+.table-bordered caption + tbody tr:first-child td:first-child,
+.table-bordered colgroup + thead tr:first-child th:first-child,
+.table-bordered colgroup + tbody tr:first-child td:first-child {
+ -webkit-border-top-left-radius: 4px;
+ border-top-left-radius: 4px;
+ -moz-border-radius-topleft: 4px;
+}
+
+.table-bordered caption + thead tr:first-child th:last-child,
+.table-bordered caption + tbody tr:first-child td:last-child,
+.table-bordered colgroup + thead tr:first-child th:last-child,
+.table-bordered colgroup + tbody tr:first-child td:last-child {
+ -webkit-border-top-right-radius: 4px;
+ border-top-right-radius: 4px;
+ -moz-border-right-topleft: 4px;
+}
+
.table-striped tbody tr:nth-child(odd) td,
.table-striped tbody tr:nth-child(odd) th {
background-color: #f9f9f9;