From 8e32798f45ad47804b4d5a3ebe7bbc05d5a8ffd1 Mon Sep 17 00:00:00 2001 From: "J. Ryan Stinnett" Date: Thu, 21 Feb 2019 14:41:42 +0000 Subject: [PATCH] Ensure fields with errors are clearly visible Until we have better validation, let's at least ensure fields with errors are properly marked via color. --- res/css/views/auth/_AuthBody.scss | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/res/css/views/auth/_AuthBody.scss b/res/css/views/auth/_AuthBody.scss index 6216bdd4b8..778f5f6a4d 100644 --- a/res/css/views/auth/_AuthBody.scss +++ b/res/css/views/auth/_AuthBody.scss @@ -58,6 +58,10 @@ limitations under the License. background-color: $authpage-body-bg-color; } +.mx_AuthBody input.error { + color: $warning-color; +} + .mx_AuthBody_editServerDetails { padding-left: 1em; font-size: 12px;