aboutsummaryrefslogtreecommitdiff
path: root/less/button-groups.less
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2012-12-01 14:25:28 -0800
committerMark Otto <[email protected]>2012-12-01 14:25:28 -0800
commit19ee7999f4db33406c4552d4eed568cd1fb8405a (patch)
tree5f4cc28a71e367854ad41ab84534869302a3dac7 /less/button-groups.less
parentdd11d0a3fa4ba061f6dcb8db81f144d81101e052 (diff)
downloadbootstrap-19ee7999f4db33406c4552d4eed568cd1fb8405a.tar.xz
bootstrap-19ee7999f4db33406c4552d4eed568cd1fb8405a.zip
remove single corner border-radius mixins
Diffstat (limited to 'less/button-groups.less')
-rw-r--r--less/button-groups.less16
1 files changed, 8 insertions, 8 deletions
diff --git a/less/button-groups.less b/less/button-groups.less
index eb843bcd8..4648245c7 100644
--- a/less/button-groups.less
+++ b/less/button-groups.less
@@ -57,25 +57,25 @@
// Set corners individual because sometimes a single button can be in a .btn-group and we need :first-child and :last-child to both match
.btn-group > .btn:first-child {
margin-left: 0;
- .border-top-left-radius(@border-radius-base);
- .border-bottom-left-radius(@border-radius-base);
+ border-top-left-radius: @border-radius-base;
+ border-bottom-left-radius: @border-radius-base;
}
// Need .dropdown-toggle since :last-child doesn't apply given a .dropdown-menu immediately after it
.btn-group > .btn:last-child,
.btn-group > .dropdown-toggle {
- .border-top-right-radius(@border-radius-base);
- .border-bottom-right-radius(@border-radius-base);
+ border-top-right-radius: @border-radius-base;
+ border-bottom-right-radius: @border-radius-base;
}
// Reset corners for large buttons
.btn-group > .btn.large:first-child {
margin-left: 0;
- .border-top-left-radius(@border-radius-large);
- .border-bottom-left-radius(@border-radius-large);
+ border-top-left-radius: @border-radius-large;
+ border-bottom-left-radius: @border-radius-large;
}
.btn-group > .btn.large:last-child,
.btn-group > .large.dropdown-toggle {
- .border-top-right-radius(@border-radius-large);
- .border-bottom-right-radius(@border-radius-large);
+ border-top-right-radius: @border-radius-large;
+ border-bottom-right-radius: @border-radius-large;
}
// On hover/focus/active, bring the proper btn to front