2
0
mirror of https://github.com/tenrok/bootstrap.git synced 2026-06-05 16:42:29 +03:00

Fixes #13872: Always apply padding to .form-control-static for that vertical alignment

This commit is contained in:
Mark Otto
2014-06-19 18:33:41 -07:00
parent 166b66d08a
commit 1e53dcd137
6 changed files with 11 additions and 14 deletions
+5 -6
View File
@@ -355,7 +355,11 @@ input[type="checkbox"] {
// a horizontal form layout.
.form-control-static {
margin-bottom: 0; // Remove default margin from `p`
// Size it appropriately next to real form controls
padding-top: (@padding-base-vertical + 1);
padding-bottom: (@padding-base-vertical + 1);
// Remove default margin from `p`
margin-bottom: 0;
}
@@ -484,11 +488,6 @@ input[type="checkbox"] {
.make-row();
}
.form-control-static {
padding-top: (@padding-base-vertical + 1);
padding-bottom: (@padding-base-vertical + 1);
}
// Reset spacing and right align labels, but scope to media queries so that
// labels on narrow viewports stack the same as a default form example.
@media (min-width: @screen-sm-min) {