aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2012-09-05 10:05:54 -0700
committerMark Otto <[email protected]>2012-09-05 10:05:54 -0700
commitd4a16d35eb031cc4cffa4a3c4456fab406e286e5 (patch)
tree21207e366bd8b630b8a3cc464ab1782a01d59436
parent3fa4ca2d871ba402f19f9c1d5e358baa023061a8 (diff)
downloadbootstrap-d4a16d35eb031cc4cffa4a3c4456fab406e286e5.tar.xz
bootstrap-d4a16d35eb031cc4cffa4a3c4456fab406e286e5.zip
fixes #4996: incorrect border radius on a table
-rw-r--r--docs/assets/css/bootstrap.css2
-rw-r--r--less/tables.less2
2 files changed, 2 insertions, 2 deletions
diff --git a/docs/assets/css/bootstrap.css b/docs/assets/css/bootstrap.css
index 8dab9eb23..772c8e489 100644
--- a/docs/assets/css/bootstrap.css
+++ b/docs/assets/css/bootstrap.css
@@ -1944,7 +1944,7 @@ table {
.table-bordered colgroup + tbody tr:first-child td:last-child {
-webkit-border-top-right-radius: 4px;
border-top-right-radius: 4px;
- -moz-border-radius-topleft: 4px;
+ -moz-border-radius-topright: 4px;
}
.table-striped tbody tr:nth-child(odd) td,
diff --git a/less/tables.less b/less/tables.less
index 13c37c6e8..e5b3f3979 100644
--- a/less/tables.less
+++ b/less/tables.less
@@ -133,7 +133,7 @@ table {
colgroup + tbody tr:first-child td:last-child {
-webkit-border-top-right-radius: 4px;
border-top-right-radius: 4px;
- -moz-border-radius-topleft: 4px;
+ -moz-border-radius-topright: 4px;
}
}