fix hashtag search styles
This commit is contained in:
parent
9d9549532b
commit
8525966d90
1 changed files with 11 additions and 5 deletions
|
@ -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 {
|
||||||
|
|
Loading…
Add table
Reference in a new issue