2
0
mirror of https://github.com/tenrok/bootstrap.git synced 2026-05-27 14:46:01 +03:00

fix grid sized horizontal form layout

This commit is contained in:
Mark Otto
2012-01-15 12:53:35 -08:00
parent 6077b7678c
commit f43f2c0ea2
3 changed files with 10 additions and 10 deletions
+3 -3
View File
@@ -469,16 +469,16 @@ input::-webkit-input-placeholder {
// Float the labels left
.control-group > label {
float: left;
width: 120px;
width: 140px;
padding-top: 5px;
text-align: right;
}
// Move over all input controls and content
.controls {
margin-left: 140px;
margin-left: 160px;
}
// Move over buttons in .form-actions to align with .controls
.form-actions {
padding-left: 140px;
padding-left: 160px;
}
}