mirror of
https://github.com/tenrok/bootstrap.git
synced 2026-06-17 19:21:23 +03:00
Fixes #13872: Always apply padding to .form-control-static for that vertical alignment
This commit is contained in:
Vendored
+2
-4
@@ -2621,6 +2621,8 @@ select[multiple].input-lg {
|
|||||||
top: 0;
|
top: 0;
|
||||||
}
|
}
|
||||||
.form-control-static {
|
.form-control-static {
|
||||||
|
padding-top: 7px;
|
||||||
|
padding-bottom: 7px;
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
.help-block {
|
.help-block {
|
||||||
@@ -2692,10 +2694,6 @@ select[multiple].input-lg {
|
|||||||
margin-right: -15px;
|
margin-right: -15px;
|
||||||
margin-left: -15px;
|
margin-left: -15px;
|
||||||
}
|
}
|
||||||
.form-horizontal .form-control-static {
|
|
||||||
padding-top: 7px;
|
|
||||||
padding-bottom: 7px;
|
|
||||||
}
|
|
||||||
@media (min-width: 768px) {
|
@media (min-width: 768px) {
|
||||||
.form-horizontal .control-label {
|
.form-horizontal .control-label {
|
||||||
padding-top: 7px;
|
padding-top: 7px;
|
||||||
|
|||||||
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
+5
-6
@@ -355,7 +355,11 @@ input[type="checkbox"] {
|
|||||||
// a horizontal form layout.
|
// a horizontal form layout.
|
||||||
|
|
||||||
.form-control-static {
|
.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();
|
.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
|
// 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.
|
// labels on narrow viewports stack the same as a default form example.
|
||||||
@media (min-width: @screen-sm-min) {
|
@media (min-width: @screen-sm-min) {
|
||||||
|
|||||||
Reference in New Issue
Block a user