Skip to content

Commit f68ef3f

Browse files
committed
chore: update
1 parent a871a9f commit f68ef3f

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

plugins/messages/src/client/components/FilterToggles.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ function isDimmed(active: Set<string>, item: string): boolean {
3131
:class="[
3232
tag ? 'p-0.5' : 'px-1.5 py-0.5 gap-0.5 text-xs',
3333
!tag && !isDimmed(active, item) ? (styles?.[item]?.color || '') : '',
34-
isDimmed(active, item) ? 'op30 saturate-50' : '',
34+
isDimmed(active, item) ? 'op50 saturate-10 hover:op85 hover:saturate-50' : 'op85 hover:op100',
3535
]"
3636
@click="$emit('toggle', item)"
3737
>

plugins/messages/src/client/components/MessageTag.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ defineProps<{
1616
<DisplayBadge
1717
:text="text"
1818
:as="as"
19-
:rounded="kind === 'label' ? 'full' : 'md'"
19+
:rounded="kind === 'label' ? 'full' : kind === 'category' ? 0.4 : 'md'"
2020
class="text-xs"
21-
:class="kind === 'category' ? 'border-l-2!' : ''"
21+
:class="kind === 'category' ? 'border-l-3!' : ''"
2222
/>
2323
</template>

plugins/messages/src/client/components/message-styles.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ export const levels: Record<DevframeMessageLevel, LevelStyle> = {
2020
warn: { icon: 'i-ph:warning-duotone', color: 'dark:text-amber-200 text-amber-600', bg: 'bg-amber', label: 'Warning' },
2121
error: { icon: 'i-ph:x-circle-duotone', color: 'dark:text-red-200 text-red-600', bg: 'bg-red', label: 'Error' },
2222
success: { icon: 'i-ph:check-circle-duotone', color: 'dark:text-green-200 text-green-600', bg: 'bg-green', label: 'Success' },
23-
debug: { icon: 'i-ph:bug-duotone', color: 'dark:text-gray-200 text-gray-600', bg: 'bg-gray', label: 'Debug' },
23+
debug: { icon: 'i-ph:bug-duotone', color: 'dark:text-violet-200 text-violet-600', bg: 'bg-violet', label: 'Debug' },
2424
}
2525

2626
export const fromEntries: Record<DevframeMessageEntryFrom, FromStyle> = {

0 commit comments

Comments
 (0)