From 7929e1b03fa3def7a69992406b28b4164775cc95 Mon Sep 17 00:00:00 2001 From: Louise Crow Date: Thu, 5 Mar 2015 17:13:18 +0000 Subject: [PATCH] Highlight fields with errors in the admin interface. --- app/assets/stylesheets/admin.scss | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/app/assets/stylesheets/admin.scss b/app/assets/stylesheets/admin.scss index 104f10c75b..bde2c55729 100644 --- a/app/assets/stylesheets/admin.scss +++ b/app/assets/stylesheets/admin.scss @@ -119,5 +119,13 @@ body.admin { padding: 3px 0; } + .fieldWithErrors { + display:block; + padding:0.2em; + textarea, input { + border:solid 1px Red !important; + } + } + }