From: Kevin Kirsche Date: Mon, 22 Jun 2015 12:35:47 +0000 (-0400) Subject: Fix border-radius not being set on left of vertical btn group X-Git-Tag: v3.3.6~17^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5387ed62b6e5710835fce86b91b6c52c5a17b73a;p=thirdparty%2Fbootstrap.git Fix border-radius not being set on left of vertical btn group While this is correct that it was not being set, I did not notice any visible difference in Chrome on OS X when it is not set. Fixes #16683 --- diff --git a/less/button-groups.less b/less/button-groups.less index 6a0c5a865c..4f37c6b41d 100644 --- a/less/button-groups.less +++ b/less/button-groups.less @@ -173,11 +173,13 @@ border-radius: 0; } &:first-child:not(:last-child) { + border-top-left-radius: @btn-border-radius-base; border-top-right-radius: @btn-border-radius-base; .border-bottom-radius(0); } &:last-child:not(:first-child) { border-bottom-left-radius: @btn-border-radius-base; + border-bottom-right-radius: @btn-border-radius-base; .border-top-radius(0); } }