margin-left: 10px;
}
-select.input-large,
textarea.input-large,
input[type="text"].input-large,
input[type="password"].input-large,
border-radius: 6px;
}
-select.input-small,
textarea.input-small,
input[type="text"].input-small,
input[type="password"].input-small,
border-radius: 3px;
}
+select.input-large {
+ height: 56px;
+ line-height: 56px;
+}
+
+select.input-small {
+ height: 30px;
+ line-height: 30px;
+}
+
.has-warning .help-block,
.has-warning .control-label {
color: #c09853;
// INPUT SIZES
// -----------
-select,
textarea,
input[type="text"],
input[type="password"],
border-radius: @border-radius-small;
}
}
+select {
+ &.input-large {
+ height: @input-height-large;
+ line-height: @input-height-large;
+ }
+ &.input-small {
+ height: @input-height-small;
+ line-height: @input-height-small;
+ }
+}