aboutsummaryrefslogtreecommitdiff
path: root/less/button-groups.less
diff options
context:
space:
mode:
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;
}