From f20c0bffd3e6701ce191ed49dab1fa29400e866f Mon Sep 17 00:00:00 2001 From: David Hill Date: Wed, 18 Feb 2026 17:02:10 +0000 Subject: [PATCH] tweak(ui): unify titlebar expanded button background --- packages/ui/src/components/button.css | 4 ++-- packages/ui/src/components/icon-button.css | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/packages/ui/src/components/button.css b/packages/ui/src/components/button.css index 2d803d95c..e22c7b298 100644 --- a/packages/ui/src/components/button.css +++ b/packages/ui/src/components/button.css @@ -172,7 +172,7 @@ } [data-component="button"].titlebar-icon[data-variant="ghost"][aria-expanded="true"] { - background-color: var(--surface-base-active); + background-color: var(--surface-raised-base-active); } [data-component="button"].titlebar-icon[data-variant="ghost"][aria-expanded="true"] [data-slot="icon-svg"] { @@ -180,5 +180,5 @@ } [data-component="button"].titlebar-icon[data-variant="ghost"][aria-expanded="true"]:hover:not(:disabled) { - background-color: var(--surface-base-active); + background-color: var(--surface-raised-base-active); } diff --git a/packages/ui/src/components/icon-button.css b/packages/ui/src/components/icon-button.css index 10337bbcc..01c555bfc 100644 --- a/packages/ui/src/components/icon-button.css +++ b/packages/ui/src/components/icon-button.css @@ -169,7 +169,7 @@ } [data-component="icon-button"].titlebar-icon[data-variant="ghost"][aria-expanded="true"] { - background-color: var(--surface-base-active); + background-color: var(--surface-raised-base-active); } [data-component="icon-button"].titlebar-icon[data-variant="ghost"][aria-expanded="true"] [data-slot="icon-svg"] { @@ -177,5 +177,5 @@ } [data-component="icon-button"].titlebar-icon[data-variant="ghost"][aria-expanded="true"]:hover:not(:disabled) { - background-color: var(--surface-base-active); + background-color: var(--surface-raised-base-active); }