From db6592423d38a7073a3d69192b2f875d026b1bcf Mon Sep 17 00:00:00 2001 From: tibing Date: Tue, 12 Jul 2016 16:26:43 +0300 Subject: [PATCH] fix(inputs styles): return forgotten styles --- src/app/theme/sass/_form.scss | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/src/app/theme/sass/_form.scss b/src/app/theme/sass/_form.scss index 7b9941b8..bfc91b9a 100644 --- a/src/app/theme/sass/_form.scss +++ b/src/app/theme/sass/_form.scss @@ -470,6 +470,21 @@ label.custom-input-danger { } } +.has-success { + @include validationState($success-bg, $success); + position: relative; +} + +.has-warning { + @include validationState($warning-bg, $warning); + position: relative; +} + +.has-error { + @include validationState($danger-bg, $danger); + position: relative; +} + .bootstrap-tagsinput { color: $content-text; background-color: $input-background;