]> git.ipfire.org Git - thirdparty/bootstrap.git/commitdiff
Fix border-radius not being set on left of vertical btn group 16684/head
authorKevin Kirsche <Kev.Kirsche+GitHub@gmail.com>
Mon, 22 Jun 2015 12:35:47 +0000 (08:35 -0400)
committerKevin Kirsche <Kev.Kirsche+GitHub@gmail.com>
Mon, 22 Jun 2015 12:35:47 +0000 (08:35 -0400)
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

index 6a0c5a865cb00296be27434c65b69d3e6d961e38..4f37c6b41da994027ca2fbeeb6d9bcfddce4a902 100644 (file)
     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);
   }
 }