Commit 8ad1f8dd authored by Chris Rebert's avatar Chris Rebert

Merge pull request #17331 from twbs/fix-17323

rm unused $state param from form-control-validation mixin
parents 22a10a10 5c239aae
...@@ -273,7 +273,7 @@ input[type="checkbox"] { ...@@ -273,7 +273,7 @@ input[type="checkbox"] {
// Form validation states // Form validation states
.has-success { .has-success {
@include form-control-validation(success, $brand-success); @include form-control-validation($brand-success);
.form-control-success { .form-control-success {
background-image: url($form-icon-success); background-image: url($form-icon-success);
...@@ -281,7 +281,7 @@ input[type="checkbox"] { ...@@ -281,7 +281,7 @@ input[type="checkbox"] {
} }
.has-warning { .has-warning {
@include form-control-validation(warning, $brand-warning); @include form-control-validation($brand-warning);
.form-control-warning { .form-control-warning {
background-image: url($form-icon-warning); background-image: url($form-icon-warning);
...@@ -289,7 +289,7 @@ input[type="checkbox"] { ...@@ -289,7 +289,7 @@ input[type="checkbox"] {
} }
.has-error { .has-error {
@include form-control-validation(error, $brand-danger); @include form-control-validation($brand-danger);
.form-control-error { .form-control-error {
background-image: url($form-icon-error); background-image: url($form-icon-error);
......
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
// Used in _forms.scss to generate the form validation CSS for warnings, errors, // Used in _forms.scss to generate the form validation CSS for warnings, errors,
// and successes. // and successes.
@mixin form-control-validation($state, $color) { @mixin form-control-validation($color) {
// Color the label and help text // Color the label and help text
.help-block, .help-block,
.control-label, .control-label,
......
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