]> git.ipfire.org Git - thirdparty/bootstrap.git/commitdiff
fixes #5018: .btn-block in .modal-footer no longer has left margin
authorMark Otto <markotto@twitter.com>
Fri, 7 Sep 2012 18:10:00 +0000 (11:10 -0700)
committerMark Otto <markotto@twitter.com>
Fri, 7 Sep 2012 18:10:00 +0000 (11:10 -0700)
docs/assets/css/bootstrap.css
less/modals.less

index cf70b5c3540f2552918926330f0886a022b2c46e..231d5283be4d54788cc28db14fd2bbb36be296a3 100644 (file)
@@ -4988,6 +4988,10 @@ input[type="submit"].btn.btn-mini {
   margin-left: -1px;
 }
 
+.modal-footer .btn-block + .btn-block {
+  margin-left: 0;
+}
+
 .tooltip {
   position: absolute;
   z-index: 1030;
index 81cacb7ab12f25882bc7f0f70f82451369eacc45..a0401c4d11f50aa2d6d27c2d7981e8fddc367010 100644 (file)
@@ -95,4 +95,8 @@
   .btn-group .btn + .btn {
     margin-left: -1px;
   }
+  // and override it for block buttons as well
+  .btn-block + .btn-block {
+    margin-left: 0;
+  }
 }