border radius on vertical button groups being incorrectly set on left and right
Created by: sdwarwick
not sure why this has not been seen before.. for vertical button groups, I found that changing the button border radius only changed the top-right and bottom left, not the top-left and bottom right. found that the following two lines fixed this.
.btn-group-vertical > .btn { &:not(:first-child):not(:last-child) { border-radius: 0; } &:first-child:not(:last-child) { border-top-right-radius: @btn-border-radius-base; border-top-left-radius: @btn-border-radius-base; //fixes this problem .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; //fixes this problem .border-top-radius(0); } }