From 789b0a702ed0e2d55f7fcbad4dca93155442b873 Mon Sep 17 00:00:00 2001 From: Abdo Date: Sun, 26 Oct 2025 16:51:57 +0300 Subject: [PATCH] Fix disabled history button's hover styles The `background` property from the primary styles had a higher priority --- ts/lib/sass/_button-mixins.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ts/lib/sass/_button-mixins.scss b/ts/lib/sass/_button-mixins.scss index ed1a9d910..1703ec0d8 100644 --- a/ts/lib/sass/_button-mixins.scss +++ b/ts/lib/sass/_button-mixins.scss @@ -97,7 +97,7 @@ cursor: not-allowed; color: var(--fg-disabled); box-shadow: none !important; - background-color: var(--button-gradient-end); + background: var(--button-gradient-end); border-bottom-color: var(--border-subtle); } }