From 19ee7999f4db33406c4552d4eed568cd1fb8405a Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Sat, 1 Dec 2012 14:25:28 -0800 Subject: remove single corner border-radius mixins --- less/button-groups.less | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'less/button-groups.less') 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 -- cgit v1.2.3