Skip to content

Commit

Permalink
Merge pull request #16684 from kkirsche/patch-2
Browse files Browse the repository at this point in the history
Fix border-radius not being set on 2 corners of vertical btn group
  • Loading branch information
mdo committed Nov 9, 2015
2 parents 857d9d6 + 5387ed6 commit ef8bc28
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions less/button-groups.less
Expand Up @@ -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);
}
}
Expand Down

0 comments on commit ef8bc28

Please sign in to comment.