more title tooltips in toolbar

This commit is contained in:
Max Howell 2023-04-25 08:48:35 -04:00
parent 1fe6a5b7fd
commit edf36d9a6b
No known key found for this signature in database
GPG key ID: 741BB84EF5BB9EEC
2 changed files with 3 additions and 2 deletions

View file

@ -24,6 +24,7 @@
class="border-gray group flex h-[28px] w-[28px] items-center justify-center rounded-sm border hover:bg-[#e1e1e1]"
class:circle-badge={$updateStatus.status === "available" || $updateStatus.status === "ready"}
on:click={() => (isOpen = !isOpen)}
title="settings"
>
<div class="icon-gear text-l text-gray flex group-hover:text-black" />
</button>

View file

@ -28,10 +28,10 @@
<i class="icon-tea-logo-iconasset-1" />
</div>
</a>
<button on:click={navStore.back} class:active={$prevPath} class="pt-1 px-2 h-[28px] text-xs rounded-sm transition-all opacity-50 hover:bg-gray hover:text-black"
<button on:click={navStore.back} class:active={$prevPath} class="pt-1 px-2 h-[28px] text-xs rounded-sm transition-all opacity-50 hover:bg-gray hover:text-black" title="go back"
><i class="icon-arrow-left" /></button
>
<button on:click={navStore.next} class:active={$nextPath} class="pt-1 px-2 h-[28px] text-xs rounded-sm transition-all opacity-50 hover:bg-gray hover:text-black"
<button on:click={navStore.next} class:active={$nextPath} class="pt-1 px-2 h-[28px] text-xs rounded-sm transition-all opacity-50 hover:bg-gray hover:text-black" title="go forward"
><i class="icon-arrow-right" /></button
>
</ul>