From 701103aad7fcdb9141e6944eaab4509ac9a0978f Mon Sep 17 00:00:00 2001 From: "J. Ryan Stinnett" Date: Thu, 1 Aug 2019 12:45:23 +0100 Subject: [PATCH] Fix dialog button border colours This corrects dialog button borders to match other buttons by removing the green border from disabled and danger states. Fixes https://github.com/vector-im/riot-web/issues/10310 --- res/css/_common.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/res/css/_common.scss b/res/css/_common.scss index d6c61b48d1..517ced43fb 100644 --- a/res/css/_common.scss +++ b/res/css/_common.scss @@ -380,7 +380,7 @@ input[type=text]:focus, input[type=password]:focus, textarea:focus { // flip colours for the secondary ones font-weight: 600; - border: 1px solid $accent-color !important; + border: 1px solid $accent-color; color: $accent-color; background-color: $button-secondary-bg-color; }