From a86f465ec94432271ae9f6965386466da1f5bee2 Mon Sep 17 00:00:00 2001 From: Vellum Assistant Date: Mon, 18 May 2026 21:13:37 -0400 Subject: [PATCH] feat(macos): fade read home feed rows to make unread state pop --- .../macos/vellum-assistant/Features/Home/HomeRecapRow.swift | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/clients/macos/vellum-assistant/Features/Home/HomeRecapRow.swift b/clients/macos/vellum-assistant/Features/Home/HomeRecapRow.swift index 4d7cb8663de..7d036a1c37a 100644 --- a/clients/macos/vellum-assistant/Features/Home/HomeRecapRow.swift +++ b/clients/macos/vellum-assistant/Features/Home/HomeRecapRow.swift @@ -54,6 +54,11 @@ struct HomeRecapRow: View { return isHovering ? VColor.surfaceLift : VColor.surfaceOverlay } + private var contentOpacity: Double { + if isUrgent { return 1.0 } + return status == .new ? 1.0 : 0.55 + } + var body: some View { Button(action: onTap) { HStack(spacing: VSpacing.sm) { @@ -99,6 +104,7 @@ struct HomeRecapRow: View { } } .contentShape(Rectangle()) + .opacity(contentOpacity) } .buttonStyle(.plain) .pointerCursor()