From 8767a98fbb013bed01443721c17eadeba70c3421 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 16 Mar 2016 11:46:25 +0100 Subject: Adding CSS for form errors, adding missing indices --- app/assets/stylesheets/dashboard.scss | 26 +++++++++++++++++++++++++- 1 file changed, 25 insertions(+), 1 deletion(-) (limited to 'app/assets/stylesheets/dashboard.scss') diff --git a/app/assets/stylesheets/dashboard.scss b/app/assets/stylesheets/dashboard.scss index 08a9415d1..ad05f5b7b 100644 --- a/app/assets/stylesheets/dashboard.scss +++ b/app/assets/stylesheets/dashboard.scss @@ -214,6 +214,12 @@ text-align: center; } + .error_notification { + color: #df405a; + font-weight: 500; + margin-bottom: 15px; + } + .input { margin-bottom: 15px; @@ -238,7 +244,7 @@ font-size: 14px; font-family: 'Roboto', sans-serif; - &:focus { + &:focus, &:active { border-bottom: 2px solid #2b90d9; padding-bottom: 5px; } @@ -253,6 +259,24 @@ margin-top: 5px; color: lighten(#282c37, 25%); } + + &.field_with_errors { + input[type=text], input[type=email], input[type=password], textarea { + border-bottom: 2px solid #df405a; + padding-bottom: 5px; + + &:focus, &:active { + border-bottom: 2px solid #2b90d9; + padding-bottom: 5px; + } + } + + .error { + display: block; + margin-top: 5px; + color: #df405a; + } + } } } -- cgit