diff options
| author | Henry Jameson <me@hjkos.com> | 2022-02-19 22:22:21 +0200 |
|---|---|---|
| committer | Henry Jameson <me@hjkos.com> | 2022-02-19 22:30:13 +0200 |
| commit | 769a9a14fe99785270596ac587ac65f48d2043ac (patch) | |
| tree | 8a07f8775b95d8635ff8f35012ebef5bd1a59fa4 /src/components/chat_title | |
| parent | a61f6e1590ce82e3c81203193469acb461b0ba4b (diff) | |
add emoji to chat titles
Diffstat (limited to 'src/components/chat_title')
| -rw-r--r-- | src/components/chat_title/chat_title.vue | 18 |
1 files changed, 6 insertions, 12 deletions
diff --git a/src/components/chat_title/chat_title.vue b/src/components/chat_title/chat_title.vue index b16ed39d..a92028e8 100644 --- a/src/components/chat_title/chat_title.vue +++ b/src/components/chat_title/chat_title.vue @@ -1,5 +1,4 @@ <template> - <!-- eslint-disable vue/no-v-html --> <div class="chat-title" :title="title" @@ -14,12 +13,13 @@ height="23px" /> </router-link> - <span + <RichContent class="username" - v-html="htmlTitle" + :title="'@'+user.screen_name_ui" + :html="htmlTitle" + :emoji="user.emoji" /> </div> - <!-- eslint-enable vue/no-v-html --> </template> <script src="./chat_title.js"></script> @@ -34,6 +34,8 @@ white-space: nowrap; align-items: center; + --emoji-size: 14px; + .username { max-width: 100%; text-overflow: ellipsis; @@ -41,14 +43,6 @@ display: inline; word-wrap: break-word; overflow: hidden; - text-overflow: ellipsis; - - .emoji { - width: 14px; - height: 14px; - vertical-align: middle; - object-fit: contain - } } .Avatar { |
