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 <noreply@anthropic.com>
This commit is contained in:
Anton Volnuhin 2026-01-30 18:58:12 +03:00
parent 25b1e1cc58
commit 139bb8cf41

View File

@ -341,8 +341,8 @@ body {
color: #333; color: #333;
} }
/* Header eye button - always visible */ /* Header eye button - show on hover like other items */
.header-eye-btn { .details-header:hover .header-eye-btn {
opacity: 0.5; opacity: 0.5;
} }