1
0
Fork 0
mirror of https://github.com/twbs/bootstrap.git synced 2022-11-09 12:25:43 -05:00

fix negative indenting in button group for nested button groups

This commit is contained in:
Mark Otto 2013-08-12 23:44:50 -07:00
parent 54a3e4b780
commit b0ab806dcc
3 changed files with 9 additions and 3 deletions

View file

@ -3421,7 +3421,10 @@ button.close {
outline: none; outline: none;
} }
.btn-group .btn + .btn { .btn-group .btn + .btn,
.btn-group .btn + .btn-group,
.btn-group .btn-group + .btn,
.btn-group .btn-group + .btn-group {
margin-left: -1px; margin-left: -1px;
} }

File diff suppressed because one or more lines are too long

View file

@ -55,7 +55,10 @@
} }
// Prevent double borders when buttons are next to each other // Prevent double borders when buttons are next to each other
.btn-group .btn + .btn { .btn-group .btn + .btn,
.btn-group .btn + .btn-group,
.btn-group .btn-group + .btn,
.btn-group .btn-group + .btn-group {
margin-left: -1px; margin-left: -1px;
} }