diff options
| author | Jon Schlinkert <[email protected]> | 2013-08-02 15:31:13 -0400 |
|---|---|---|
| committer | Jon Schlinkert <[email protected]> | 2013-08-02 15:33:03 -0400 |
| commit | c017e19ed236c1e2f6d3818e080f2a03ef4f947b (patch) | |
| tree | 7678e9902c5caeaf3610c3f8c2854449615b48d8 /less/forms.less | |
| parent | 08ce3ef9e1767fa57ebdccd6dfbae5a8fbcb9fa3 (diff) | |
| download | bootstrap-c017e19ed236c1e2f6d3818e080f2a03ef4f947b.tar.xz bootstrap-c017e19ed236c1e2f6d3818e080f2a03ef4f947b.zip | |
Resolves https://github.com/twbs/bootstrap/issues/9014. updates mixins to consistently use semicolons as argument separator. Rebuild to confirm, no diff in compiled CSS.
Diffstat (limited to 'less/forms.less')
| -rw-r--r-- | less/forms.less | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/less/forms.less b/less/forms.less index f4e8c996d..fc5585928 100644 --- a/less/forms.less +++ b/less/forms.less @@ -255,15 +255,15 @@ textarea { // Warning .has-warning { - .form-control-validation(@state-warning-text, @state-warning-text, @state-warning-bg); + .form-control-validation(@state-warning-text; @state-warning-text; @state-warning-bg); } // Error .has-error { - .form-control-validation(@state-danger-text, @state-danger-text, @state-danger-bg); + .form-control-validation(@state-danger-text; @state-danger-text; @state-danger-bg); } // Success .has-success { - .form-control-validation(@state-success-text, @state-success-text, @state-success-bg); + .form-control-validation(@state-success-text; @state-success-text; @state-success-bg); } |
