From 139bb8cf410b4e6b270d792622955bd3057943bd Mon Sep 17 00:00:00 2001 From: Anton Volnuhin Date: Fri, 30 Jan 2026 18:58:12 +0300 Subject: [PATCH] Make header eye button show only on hover Changed from always visible (50% opacity) to hover-only behavior, matching the eye buttons in the items list below. Co-Authored-By: Claude Opus 4.5 --- styles.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/styles.css b/styles.css index 46fd9fd..cafedec 100644 --- a/styles.css +++ b/styles.css @@ -341,8 +341,8 @@ body { color: #333; } -/* Header eye button - always visible */ -.header-eye-btn { +/* Header eye button - show on hover like other items */ +.details-header:hover .header-eye-btn { opacity: 0.5; }