From 5cf8275540d7162cd4936a7c0e76dbfe7f66b62c Mon Sep 17 00:00:00 2001 From: Adam Mathes Date: Mon, 16 Feb 2026 10:53:59 -0800 Subject: V3 UI Polish: Improved keyboard navigation, fixed logo position, and updated branding - Fix V3 keyboard navigation delay (resolved NK-wjats7) - Update V3 document title to 'neko' (resolved NK-4p3s91) - Fix V3 neko logo/button position to be top-left fixed (resolved NK-89za3s) - Improve FeedItems (React) stability with ref-based index tracking and robust tests - Sync V3 styling and selection feedback with V2 patterns - Rebuild production assets --- frontend-vanilla/src/style.css | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) (limited to 'frontend-vanilla/src/style.css') diff --git a/frontend-vanilla/src/style.css b/frontend-vanilla/src/style.css index 0076e58..37ba761 100644 --- a/frontend-vanilla/src/style.css +++ b/frontend-vanilla/src/style.css @@ -348,9 +348,20 @@ select:focus { } .feed-item { - padding: 1rem 0; - margin-top: 5rem; + padding: 1rem 0.5rem; + margin-top: 2rem; border-bottom: none; + border-radius: 8px; + transition: background-color 0.2s ease; +} + +.feed-item.selected { + background-color: rgba(0, 123, 255, 0.05); + box-shadow: inset 4px 0 0 var(--accent-color); +} + +.theme-dark .feed-item.selected { + background-color: rgba(33, 136, 255, 0.1); } .item-header { @@ -452,7 +463,7 @@ select:focus { --bg-color: #24292e; --text-color: #ffffff; --sidebar-bg: #1b1f23; - --link-color: rgb(90, 200, 250); + --link-color: #5ac8fa; --border-color: #444d56; --accent-color: #2188ff; } -- cgit v1.2.3