From f7c0c37b8dea6ba575feda18566bbc96e03d1a1c Mon Sep 17 00:00:00 2001 From: RossAscends <124905043+RossAscends@users.noreply.github.com> Date: Thu, 10 Oct 2024 11:08:51 +0900 Subject: [PATCH] make zoomed avatar grab/close buttons only visible on hover --- public/style.css | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/public/style.css b/public/style.css index ff7ebe5f1..9f9fc3c17 100644 --- a/public/style.css +++ b/public/style.css @@ -613,6 +613,12 @@ body .panelControlBar { min-width: 55px; justify-content: flex-end; gap: 0px; + opacity:0; + transition: all 250ms; +} + +.zoomed_avatar:hover .panelControlBar { + opacity:1; } .panelControlBar .drag-grabber {