fix hashtag search styles

This commit is contained in:
Henry Jameson 2025-03-13 15:09:41 +02:00
parent 9d9549532b
commit 8525966d90

View file

@ -119,10 +119,13 @@
:key="hashtag.url" :key="hashtag.url"
class="status trend search-result" class="status trend search-result"
> >
<div class="hashtag"> <router-link
<router-link :to="{ name: 'tag-timeline', params: { tag: hashtag.name } }"> class="list-item hashtag"
:to="{ name: 'tag-timeline', params: { tag: hashtag.name } }"
>
<span class="name">
#{{ hashtag.name }} #{{ hashtag.name }}
</router-link> </span>
<div v-if="lastHistoryRecord(hashtag)"> <div v-if="lastHistoryRecord(hashtag)">
<span v-if="lastHistoryRecord(hashtag).accounts == 1"> <span v-if="lastHistoryRecord(hashtag).accounts == 1">
{{ $t('search.person_talking', { count: lastHistoryRecord(hashtag).accounts }) }} {{ $t('search.person_talking', { count: lastHistoryRecord(hashtag).accounts }) }}
@ -131,7 +134,7 @@
{{ $t('search.people_talking', { count: lastHistoryRecord(hashtag).accounts }) }} {{ $t('search.people_talking', { count: lastHistoryRecord(hashtag).accounts }) }}
</span> </span>
</div> </div>
</div> </router-link>
<div <div
v-if="lastHistoryRecord(hashtag)" v-if="lastHistoryRecord(hashtag)"
class="count" class="count"
@ -199,10 +202,13 @@
.hashtag { .hashtag {
flex: 1 1 auto; flex: 1 1 auto;
color: var(--text);
overflow: hidden; overflow: hidden;
text-overflow: ellipsis; text-overflow: ellipsis;
white-space: nowrap; white-space: nowrap;
.name {
color: var(--link);
}
} }
.count { .count {