make zoomed avatar grab/close buttons only visible on hover

This commit is contained in:
RossAscends 2024-10-10 11:08:51 +09:00
parent c49138dfea
commit f7c0c37b8d
1 changed files with 6 additions and 0 deletions

View File

@ -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 {