Commit 9da90adb authored by Mark Otto's avatar Mark Otto

fixes #8068: add .help-block to form field state mixin

parent c9df1db5
......@@ -1605,6 +1605,7 @@ input[type="color"].input-small {
border-radius: 3px;
}
.has-warning .help-block,
.has-warning .control-label {
color: #c09853;
}
......@@ -1628,6 +1629,7 @@ input[type="color"].input-small {
border-color: #c09853;
}
.has-error .help-block,
.has-error .control-label {
color: #b94a48;
}
......@@ -1651,6 +1653,7 @@ input[type="color"].input-small {
border-color: #b94a48;
}
.has-success .help-block,
.has-success .control-label {
color: #468847;
}
......
......@@ -481,6 +481,7 @@
// Generate form validation states
.form-field-validation(@text-color: #555, @border-color: #ccc, @background-color: #f5f5f5) {
// Color the label text
.help-block,
.control-label {
color: @text-color;
}
......
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