From b62848e363fa474ea3b91524fe3c3126c293aef7 Mon Sep 17 00:00:00 2001 From: Vince Date: Wed, 24 Nov 2021 15:24:19 +0800 Subject: [PATCH] Update #370 --- src/sass/gtk/_common-3.0.scss | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/sass/gtk/_common-3.0.scss b/src/sass/gtk/_common-3.0.scss index 58a3056..04af6be 100644 --- a/src/sass/gtk/_common-3.0.scss +++ b/src/sass/gtk/_common-3.0.scss @@ -3573,12 +3573,16 @@ messagedialog { // Message Dialog styling border-radius: $bt_radius; background-color: transparent; - &:hover { + &:hover, &:focus:hover { @include button(flat-hover); transition: $button_transition; } - &:active, &:checked { + &:focus { + background-color: $fill_color; + } + + &:active, &:active:hover { @include button(active); } }