0
0
mirror of https://github.com/twbs/bootstrap.git synced 2024-11-29 11:24:18 +01:00

fix margin on input buttons in modals

This commit is contained in:
Mark Otto 2012-01-25 08:34:20 -08:00
parent de4ada3b88
commit d8041f7c8f
3 changed files with 4 additions and 2 deletions

3
bootstrap.css vendored
View File

@ -6,7 +6,7 @@
* http://www.apache.org/licenses/LICENSE-2.0
*
* Designed and built with all the love in the world @twitter by @mdo and @fat.
* Date: Wed Jan 25 01:02:35 PST 2012
* Date: Wed Jan 25 08:34:06 PST 2012
*/
article,
aside,
@ -2198,6 +2198,7 @@ i {
.modal-footer .btn {
float: right;
margin-left: 5px;
margin-bottom: 0;
}
.tooltip {
position: absolute;

2
bootstrap.min.css vendored
View File

@ -428,7 +428,7 @@ i{background-image:url(docs/assets/img/glyphicons-halflings-sprite.png);backgrou
.modal-body{padding:15px;}
.modal-footer{padding:14px 15px 15px;margin-bottom:0;background-color:#f5f5f5;border-top:1px solid #ddd;-webkit-border-radius:0 0 6px 6px;-moz-border-radius:0 0 6px 6px;border-radius:0 0 6px 6px;-webkit-box-shadow:inset 0 1px 0 #ffffff;-moz-box-shadow:inset 0 1px 0 #ffffff;box-shadow:inset 0 1px 0 #ffffff;*zoom:1;}.modal-footer:before,.modal-footer:after{display:table;content:"";}
.modal-footer:after{clear:both;}
.modal-footer .btn{float:right;margin-left:5px;}
.modal-footer .btn{float:right;margin-left:5px;margin-bottom:0;}
.tooltip{position:absolute;z-index:1020;display:block;visibility:visible;padding:5px;font-size:11px;filter:alpha(opacity=0);-moz-opacity:0;opacity:0;}.tooltip.in{filter:alpha(opacity=80);-moz-opacity:0.8;opacity:0.8;}
.tooltip.top{margin-top:-2px;}
.tooltip.right{margin-left:2px;}

View File

@ -60,5 +60,6 @@
.btn {
float: right;
margin-left: 5px;
margin-bottom: 0; // account for input[type=submit] which gets the bottom margin like all other inputs
}
}