Changed alert trigger icon titles to tooltips.
This commit is contained in:
parent
8d364b1cbd
commit
f48afaeffa
|
@ -91,22 +91,22 @@
|
|||
>
|
||||
<div class="alert-triggers">
|
||||
<Icon
|
||||
v-tooltip="alert.notify ? 'Notify in traxxx' : undefined"
|
||||
icon="bell2"
|
||||
:title="alert.notify ? 'Notify in traxxx' : undefined"
|
||||
:class="{ trigger: alert.notify }"
|
||||
/>
|
||||
|
||||
<Icon
|
||||
v-if="alert.stashes.some((stash) => !stash.isPrimary)"
|
||||
v-tooltip="`Add to ${alert.stashes.map((stash) => stash.name).join(', ')}`"
|
||||
icon="folder-heart"
|
||||
:title="`Add to ${alert.stashes.map((stash) => stash.name).join(', ')}`"
|
||||
class="trigger"
|
||||
/>
|
||||
|
||||
<Icon
|
||||
v-else
|
||||
v-tooltip="alert.stashes.length > 0 ? 'Add to Favorites' : undefined"
|
||||
icon="heart7"
|
||||
:title="alert.stashes.length > 0 ? 'Add to Favorites' : undefined"
|
||||
:class="{ trigger: alert.stashes.length > 0 }"
|
||||
/>
|
||||
|
||||
|
@ -409,7 +409,7 @@ async function removeAlert(alert) {
|
|||
display: flex;
|
||||
align-items: center;
|
||||
gap: .5rem;
|
||||
margin-right: 1rem;
|
||||
margin-right: .75rem;
|
||||
|
||||
.icon {
|
||||
fill: var(--shadow-weak-40);
|
||||
|
|
Loading…
Reference in New Issue