From 5387ed62b6e5710835fce86b91b6c52c5a17b73a Mon Sep 17 00:00:00 2001 From: Kevin Kirsche Date: Mon, 22 Jun 2015 08:35:47 -0400 Subject: [PATCH] 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 --- less/button-groups.less | 2 ++ 1 file changed, 2 insertions(+) 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); } } -- 2.47.2