Commit 2137cd65 authored by Mark Otto's avatar Mark Otto

fixes #4819: manual fix of missing .control-label in responsive767 file, coupled with a remake

parent e27b1355
...@@ -876,7 +876,7 @@ ...@@ -876,7 +876,7 @@
input[type="radio"] { input[type="radio"] {
border: 1px solid #ccc; border: 1px solid #ccc;
} }
.form-horizontal .control-group > label { .form-horizontal .control-label {
float: none; float: none;
width: auto; width: auto;
padding-top: 0; padding-top: 0;
......
...@@ -132,25 +132,27 @@ ...@@ -132,25 +132,27 @@
} }
// Remove the horizontal form styles // Remove the horizontal form styles
.form-horizontal .control-group > label { .form-horizontal {
.control-label {
float: none; float: none;
width: auto; width: auto;
padding-top: 0; padding-top: 0;
text-align: left; text-align: left;
} }
// Move over all input controls and content // Move over all input controls and content
.form-horizontal .controls { .controls {
margin-left: 0; margin-left: 0;
} }
// Move the options list down to align with labels // Move the options list down to align with labels
.form-horizontal .control-list { .control-list {
padding-top: 0; // has to be padding because margin collaspes padding-top: 0; // has to be padding because margin collaspes
} }
// Move over buttons in .form-actions to align with .controls // Move over buttons in .form-actions to align with .controls
.form-horizontal .form-actions { .form-actions {
padding-left: 10px; padding-left: 10px;
padding-right: 10px; padding-right: 10px;
} }
}
// Modals // Modals
.modal { .modal {
......
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