From 072113d9b4ef87fddba70681d7ee383434ec8079 Mon Sep 17 00:00:00 2001 From: Untit1ed Date: Wed, 13 Nov 2013 12:53:04 -0800 Subject: [PATCH] Reverse split button dropdown fix A bug(?) when a reversed split button dropdown not rendered properly. Illustrated in the following example http://jsfiddle.net/rBFW9/2/ --- less/button-groups.less | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/less/button-groups.less b/less/button-groups.less index c2535762257d..eaa9a3597c2b 100644 --- a/less/button-groups.less +++ b/less/button-groups.less @@ -90,7 +90,7 @@ // 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; - &:not(:last-child):not(.dropdown-toggle) { + &:not(:last-child) { .border-right-radius(0); } }