Fix form validation flash message color and input borders (#9235)

* Fix form validation flash message color and input borders

* Fix typo
This commit is contained in:
Eugen Rochko 2018-11-08 21:06:14 +01:00
parent b3c29ece47
commit 4b2f254806
2 changed files with 6 additions and 3 deletions

View File

@ -330,9 +330,12 @@ code {
}
input[type=text],
input[type=number],
input[type=email],
input[type=password] {
border-bottom-color: $valid-value-color;
input[type=password],
textarea,
select {
border-color: lighten($error-red, 12%);
}
.error {

View File

@ -1,3 +1,3 @@
- if object.errors.any?
.flash-message#error_explanation
.flash-message.alert#error_explanation
%strong= t('generic.validation_errors', count: object.errors.count)