From 98f3d9bd74db73b505035d6541c3994ea46f006f Mon Sep 17 00:00:00 2001 From: Michael Telatynski <7t3chguy@gmail.com> Date: Mon, 13 Jul 2020 23:23:21 +0100 Subject: [PATCH] fix input border colour Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> --- res/css/_common.scss | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/res/css/_common.scss b/res/css/_common.scss index 5f698de7bf..8998aae7e7 100644 --- a/res/css/_common.scss +++ b/res/css/_common.scss @@ -161,9 +161,8 @@ input[type=text]:focus, input[type=password]:focus, textarea:focus { background-color: transparent; color: $input-darker-fg-color; border-radius: 4px; - border: 1px solid $dialog-close-fg-color; - // these things should probably not be defined - // globally + border: 1px solid rgba($primary-fg-color, .1); + // these things should probably not be defined globally margin: 9px; flex: 0 0 auto; }