mirror of
https://github.com/ivabus/gui
synced 2025-04-23 14:07:14 +03:00
more title tooltips in toolbar
This commit is contained in:
parent
1fe6a5b7fd
commit
edf36d9a6b
2 changed files with 3 additions and 2 deletions
|
@ -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>
|
||||
|
|
|
@ -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>
|
||||
|
|
Loading…
Reference in a new issue