From: Mark Otto Date: Wed, 5 Sep 2012 17:05:54 +0000 (-0700) Subject: fixes #4996: incorrect border radius on a table X-Git-Tag: v2.2.0^2~122 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=d4a16d35eb031cc4cffa4a3c4456fab406e286e5;p=thirdparty%2Fbootstrap.git fixes #4996: incorrect border radius on a table --- diff --git a/docs/assets/css/bootstrap.css b/docs/assets/css/bootstrap.css index 8dab9eb23e..772c8e489d 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 13c37c6e87..e5b3f39799 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; } }