summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorsyuilo <syuilotan@yahoo.co.jp>2018-06-11 14:16:21 +0900
committersyuilo <syuilotan@yahoo.co.jp>2018-06-11 14:16:21 +0900
commitbb53db905f8765c0e0faa0fa69e71ba5bcee799e (patch)
tree9821e213d2b62c2a61e1ad26933386cbe439a576 /src
parentMerge pull request #1704 from syuilo/l10n_master (diff)
downloadsharkey-bb53db905f8765c0e0faa0fa69e71ba5bcee799e.tar.gz
sharkey-bb53db905f8765c0e0faa0fa69e71ba5bcee799e.tar.bz2
sharkey-bb53db905f8765c0e0faa0fa69e71ba5bcee799e.zip
:v:
Diffstat (limited to 'src')
-rw-r--r--src/client/app/common/views/widgets/hashtags.vue8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/client/app/common/views/widgets/hashtags.vue b/src/client/app/common/views/widgets/hashtags.vue
index 809f87f6f2..8c9ca5d419 100644
--- a/src/client/app/common/views/widgets/hashtags.vue
+++ b/src/client/app/common/views/widgets/hashtags.vue
@@ -8,7 +8,7 @@
<div v-else>
<div v-for="stat in stats" :key="stat.tag">
<div class="tag">
- <router-link :to="`/tags/${ stat.tag }`">#{{ stat.tag }}</router-link>
+ <router-link :to="`/tags/${ stat.tag }`" :title="stat.tag">#{{ stat.tag }}</router-link>
<p>{{ '%i18n:@count%'.replace('{}', stat.usersCount) }}</p>
</div>
<x-chart class="chart" :src="stat.chart"/>
@@ -84,10 +84,16 @@ root(isDark)
> .tag
flex 1
+ overflow hidden
font-size 14px
color isDark ? #9baec8 : #65727b
> a
+ display block
+ width 100%
+ white-space nowrap
+ overflow hidden
+ text-overflow ellipsis
color inherit
> p