mirror of
https://github.com/Hopiu/bootstrap.git
synced 2026-03-28 02:00:23 +00:00
enable button groups in modal-footer by removing 5px added margin between .btn
This commit is contained in:
parent
e5a284d442
commit
ac7f571e53
3 changed files with 7 additions and 0 deletions
Binary file not shown.
3
docs/assets/css/bootstrap.css
vendored
3
docs/assets/css/bootstrap.css
vendored
|
|
@ -3323,6 +3323,9 @@ input[type="submit"].btn.btn-small {
|
|||
margin-left: 5px;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
.modal-footer .btn-group .btn + .btn {
|
||||
margin-left: -1px;
|
||||
}
|
||||
.tooltip {
|
||||
position: absolute;
|
||||
z-index: 1020;
|
||||
|
|
|
|||
|
|
@ -83,4 +83,8 @@
|
|||
margin-left: 5px;
|
||||
margin-bottom: 0; // account for input[type="submit"] which gets the bottom margin like all other inputs
|
||||
}
|
||||
// but override that for button groups
|
||||
.btn-group .btn + .btn {
|
||||
margin-left: -1px;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue