Skip to content

Commit

Permalink
Fix border-radius not being set on left of vertical btn group
Browse files Browse the repository at this point in the history
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 twbs#16683
  • Loading branch information
kkirsche committed Jun 22, 2015
1 parent 1b74546 commit 5387ed6
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions less/button-groups.less
Original file line number Diff line number Diff line change
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 5387ed6

Please sign in to comment.