diff options
| author | Julian Thilo <[email protected]> | 2014-01-07 22:24:45 +0100 |
|---|---|---|
| committer | Julian Thilo <[email protected]> | 2014-01-07 22:24:45 +0100 |
| commit | 8fd177bfa78d3e742486a66450465f3716cd11b2 (patch) | |
| tree | 70464468ed5a225b294c4da72649051a56e6a417 /less/forms.less | |
| parent | 5f328dce889823f1ec78844427a48da4c2eb6638 (diff) | |
| download | bootstrap-8fd177bfa78d3e742486a66450465f3716cd11b2.tar.xz bootstrap-8fd177bfa78d3e742486a66450465f3716cd11b2.zip | |
Fix #12073: Consistent order of variations
This changes the order of component variations throughout the repo (code and docs) to be more consistent.
The order now used everywhere is the one most frequently found in the repo before:
Default, Primary, Success, Info, Warning, Danger
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 34f970e2e..56090098e 100644 --- a/less/forms.less +++ b/less/forms.less @@ -276,15 +276,15 @@ input[type="checkbox"], } // Feedback states +.has-success { + .form-control-validation(@state-success-text; @state-success-text; @state-success-bg); +} .has-warning { .form-control-validation(@state-warning-text; @state-warning-text; @state-warning-bg); } .has-error { .form-control-validation(@state-danger-text; @state-danger-text; @state-danger-bg); } -.has-success { - .form-control-validation(@state-success-text; @state-success-text; @state-success-bg); -} // Static form control text |
