Commit ac7f571e authored by Mark Otto's avatar Mark Otto

enable button groups in modal-footer by removing 5px added margin between .btn

parent e5a284d4
......@@ -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;
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment