aboutsummaryrefslogtreecommitdiff
path: root/less/button-groups.less
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2012-09-30 23:11:54 -0700
committerMark Otto <[email protected]>2012-09-30 23:11:54 -0700
commit9872902e4784220f3add1a1af256dfc89cd6e31a (patch)
treed293139e1a9cb6e9f07add39d3884b4ac445eaa5 /less/button-groups.less
parent0cd186183c5e18f0517d6037d53f29c56adbac72 (diff)
downloadbootstrap-9872902e4784220f3add1a1af256dfc89cd6e31a.tar.xz
bootstrap-9872902e4784220f3add1a1af256dfc89cd6e31a.zip
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/button-groups.less')
-rw-r--r--less/button-groups.less12
1 files changed, 6 insertions, 6 deletions
diff --git a/less/button-groups.less b/less/button-groups.less
index cf48b0ebc..f093c116f 100644
--- a/less/button-groups.less
+++ b/less/button-groups.less
@@ -32,7 +32,7 @@
// Float them, remove border radius, then re-add to first and last elements
.btn-group > .btn {
position: relative;
- .border-radius(0);
+ border-radius: 0;
}
.btn-group > .btn + .btn {
margin-left: -1px;
@@ -219,21 +219,21 @@
display: block;
float: none;
width: 100%;
- .border-radius(0);
+ border-radius: 0;
}
.btn-group-vertical .btn + .btn {
margin-left: 0;
margin-top: -1px;
}
.btn-group-vertical .btn:first-child {
- .border-radius(4px 4px 0 0);
+ border-radius: 4px 4px 0 0;
}
.btn-group-vertical .btn:last-child {
- .border-radius(0 0 4px 4px);
+ border-radius: 0 0 4px 4px;
}
.btn-group-vertical .btn-large:first-child {
- .border-radius(6px 6px 0 0);
+ border-radius: 6px 6px 0 0;
}
.btn-group-vertical .btn-large:last-child {
- .border-radius(0 0 6px 6px);
+ border-radius: 0 0 6px 6px;
}