ui: improve hover hint
This commit is contained in:
parent
4d3d05ae5c
commit
fcde653efe
3 changed files with 13 additions and 4 deletions
|
@ -17,8 +17,12 @@ const visibility = $computed(() => STATUS_VISIBILITIES.find(v => v.value === sta
|
|||
</script>
|
||||
|
||||
<template>
|
||||
<div flex flex-col gap-2 py3 px-4 :id="`status-${status.id}`">
|
||||
<AccountInfo :account="status.account" :hover="true" />
|
||||
<div :id="`status-${status.id}`" flex flex-col gap-2 py3 px-4>
|
||||
<NuxtLink :to="getAccountPath(status.account)" rounded-full hover:bg-active transition-100 pr5 mr-a>
|
||||
<AccountHoverWrapper :account="status.account">
|
||||
<AccountInfo :account="status.account" />
|
||||
</AccountHoverWrapper>
|
||||
</NuxtLink>
|
||||
<StatusReplyingTo v-if="status.inReplyToAccountId" :status="status" />
|
||||
<StatusSpoiler :enabled="status.sensitive">
|
||||
<template #spoiler>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue