From 5581656af140c4eebe78b5e8f69d64bb38adcd8d Mon Sep 17 00:00:00 2001 From: Blake Niemyjski Date: Thu, 30 Jul 2026 16:59:33 -0500 Subject: [PATCH] Fix ghost button hover contrast --- .../src/lib/features/shared/components/ui/button/button.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Exceptionless.Web/ClientApp/src/lib/features/shared/components/ui/button/button.svelte b/src/Exceptionless.Web/ClientApp/src/lib/features/shared/components/ui/button/button.svelte index 29f7983a79..285aa8fc5b 100644 --- a/src/Exceptionless.Web/ClientApp/src/lib/features/shared/components/ui/button/button.svelte +++ b/src/Exceptionless.Web/ClientApp/src/lib/features/shared/components/ui/button/button.svelte @@ -15,7 +15,7 @@ outline: "border-border bg-background hover:bg-muted hover:text-foreground dark:bg-input/30 dark:border-input dark:hover:bg-input/50 aria-expanded:bg-muted aria-expanded:text-foreground", secondary: "bg-secondary text-secondary-foreground hover:bg-secondary/80 aria-expanded:bg-secondary aria-expanded:text-secondary-foreground", success: primaryActionVariant, - ghost: "hover:bg-muted hover:text-foreground dark:hover:bg-muted/50 aria-expanded:bg-muted aria-expanded:text-foreground", + ghost: "hover:border-accent-foreground/40 hover:bg-accent hover:text-accent-foreground aria-expanded:bg-muted aria-expanded:text-foreground", destructive: "bg-destructive/10 hover:bg-destructive/20 focus-visible:ring-destructive/20 dark:focus-visible:ring-destructive/40 dark:bg-destructive/20 text-destructive focus-visible:border-destructive/40 dark:hover:bg-destructive/30", link: "text-primary underline-offset-4 hover:underline", },