Commit f2bd7d9f authored by Mark Otto's avatar Mark Otto

fixes #5018: .btn-block in .modal-footer no longer has left margin

parent 6c5c3c81
...@@ -4988,6 +4988,10 @@ input[type="submit"].btn.btn-mini { ...@@ -4988,6 +4988,10 @@ input[type="submit"].btn.btn-mini {
margin-left: -1px; margin-left: -1px;
} }
.modal-footer .btn-block + .btn-block {
margin-left: 0;
}
.tooltip { .tooltip {
position: absolute; position: absolute;
z-index: 1030; z-index: 1030;
......
...@@ -95,4 +95,8 @@ ...@@ -95,4 +95,8 @@
.btn-group .btn + .btn { .btn-group .btn + .btn {
margin-left: -1px; margin-left: -1px;
} }
// and override it for block buttons as well
.btn-block + .btn-block {
margin-left: 0;
}
} }
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