1
0
Fork 0
mirror of https://github.com/immich-app/immich.git synced 2024-12-28 06:31:58 +00:00

wip: touch and hold hints

This commit is contained in:
ben-basten 2024-10-13 23:14:07 -04:00
parent 6c9ea9f7f4
commit 12bda9a479
No known key found for this signature in database
GPG key ID: 78803E894B258348

View file

@ -142,10 +142,12 @@
{id}
style:width={buttonSize ? buttonSize + 'px' : ''}
style:height={buttonSize ? buttonSize + 'px' : ''}
class="flex place-content-center place-items-center rounded-full {colorClass} {paddingClass} transition-all disabled:cursor-default hover:dark:text-immich-dark-gray {className} {mobileClass}"
class="flex place-content-center place-items-center rounded-full select-none {colorClass} {paddingClass} transition-all disabled:cursor-default hover:dark:text-immich-dark-gray {className} {mobileClass}"
aria-label={title}
on:mouseenter={() => togglePopover(true)}
on:mouseleave={() => togglePopover(false)}
on:touchstart={() => togglePopover(true)}
on:touchend={() => togglePopover(false)}
on:focus={() => {
if (!element.matches(':focus-visible')) {
return;