Skip to content

Commit 3915cb3

Browse files
committed
Improves tag hover state visibility
Adjusts the tag filter hover state to use a lower text opacity, providing better visual distinction and user experience.
1 parent 17eeaf6 commit 3915cb3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Exceptionless.Web/ClientApp/src/lib/features/events/components/views/overview.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@
210210
{#each event.tags as tag (tag)}
211211
<Badge color="dark"
212212
><EventsFacetedFilter.TagTrigger changed={filterChanged} class="mr-1" value={[tag]}
213-
><Filter class="text-muted-foreground text-opacity-80 hover:text-secondary size-5" /></EventsFacetedFilter.TagTrigger
213+
><Filter class="text-muted-foreground text-opacity-50 hover:text-secondary size-5" /></EventsFacetedFilter.TagTrigger
214214
>{tag}</Badge
215215
>
216216
{/each}

src/Exceptionless.Web/ClientApp/src/lib/features/stacks/components/stack-card.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@
160160
{#each stack.tags as tag (tag)}
161161
<Badge color="dark"
162162
><EventsFacetedFilter.TagTrigger changed={filterChanged} class="mr-1" value={[tag]}
163-
><Filter class="text-muted-foreground text-opacity-80 hover:text-secondary size-5" /></EventsFacetedFilter.TagTrigger
163+
><Filter class="text-muted-foreground text-opacity-50 hover:text-secondary size-5" /></EventsFacetedFilter.TagTrigger
164164
>{tag}</Badge
165165
>
166166
{/each}

0 commit comments

Comments
 (0)