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-10-01 10:11:54 +0400
committerMark Otto <markotto@twitter.com>2012-10-01 10:11:54 +0400
commit9872902e4784220f3add1a1af256dfc89cd6e31a (patch)
treed293139e1a9cb6e9f07add39d3884b4ac445eaa5 /less/labels-badges.less
parent0cd186183c5e18f0517d6037d53f29c56adbac72 (diff)
remove .border-radius mixin and replace with standard border-radius property, since -webkit-* and -moz-* are only needed for older versions
Diffstat (limited to 'less/labels-badges.less')
-rw-r--r--less/labels-badges.less4
1 files changed, 2 insertions, 2 deletions
diff --git a/less/labels-badges.less b/less/labels-badges.less
index 2f15fec05f..cd20bf93ec 100644
--- a/less/labels-badges.less
+++ b/less/labels-badges.less
@@ -18,11 +18,11 @@
// Set unique padding and border-radii
.label {
padding: 1px 4px 2px;
- .border-radius(3px);
+ border-radius: 3px;
}
.badge {
padding: 1px 9px 2px;
- .border-radius(9px);
+ border-radius: 9px;
}
// Hover state, but only for links