Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Otto <markotto@twitter.com>2012-04-15 00:31:48 +0400
committerMark Otto <markotto@twitter.com>2012-04-15 00:31:48 +0400
commit8575a452942001bce522e8e258d9e192d24cb6ec (patch)
tree02aed5e3c01693b71861e44906fa31c4cf5d38ca /less/tables.less
parenta7d8145a321036e39a91fc9648710e62f7f164ac (diff)
alt fix to #3029: change to single border-radii properties
Diffstat (limited to 'less/tables.less')
-rw-r--r--less/tables.less15
1 files changed, 12 insertions, 3 deletions
diff --git a/less/tables.less b/less/tables.less
index cdc794edce..8d4f534bc8 100644
--- a/less/tables.less
+++ b/less/tables.less
@@ -92,20 +92,29 @@ table {
// For first th or td in the first row in the first thead or tbody
thead:first-child tr:first-child th:first-child,
tbody:first-child tr:first-child td:first-child {
- .border-radius(4px 0 0 0);
+ -webkit-border-top-left-radius: 4px;
+ -moz-border-radius-topleft: 4px;
+ border-top-left-radius: 4px;
}
thead:first-child tr:first-child th:last-child,
tbody:first-child tr:first-child td:last-child {
- .border-radius(0 4px 0 0);
+ -webkit-border-top-right-radius: 4px;
+ -moz-border-radius-topright: 4px;
+ border-top-right-radius: 4px;
}
// For first th or td in the first row in the first thead or tbody
thead:last-child tr:last-child th:first-child,
tbody:last-child tr:last-child td:first-child {
.border-radius(0 0 0 4px);
+ -webkit-border-bottom-left-radius: 4px;
+ -moz-border-radius-bottomleft: 4px;
+ border-bottom-left-radius: 4px;
}
thead:last-child tr:last-child th:last-child,
tbody:last-child tr:last-child td:last-child {
- .border-radius(0 0 4px 0);
+ -webkit-border-bottom-right-radius: 4px;
+ -moz-border-radius-bottomright: 4px;
+ border-bottom-right-radius: 4px;
}
}