Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/spreed.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2020-01-08 14:05:04 +0300
committerJoas Schilling <coding@schilljs.com>2020-01-08 14:07:42 +0300
commit62157416e8941e1f299ac1bbd5e42273addfa0cf (patch)
treefbb8a0c6470681dd5f4f8b7300a1be203c3b598a /src
parent1fb9c4d72239ee0f7121e4035e80c92a8a339a4c (diff)
Make all text bold for unread conversations
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'src')
-rw-r--r--src/components/LeftSidebar/ConversationsList/Conversation.vue19
1 files changed, 16 insertions, 3 deletions
diff --git a/src/components/LeftSidebar/ConversationsList/Conversation.vue b/src/components/LeftSidebar/ConversationsList/Conversation.vue
index f94e22827..0c71e0f12 100644
--- a/src/components/LeftSidebar/ConversationsList/Conversation.vue
+++ b/src/components/LeftSidebar/ConversationsList/Conversation.vue
@@ -22,20 +22,26 @@
<template>
<AppContentListItem
:title="item.displayName"
- :to="{ name: 'conversation', params: { token: item.token }}">
+ :to="{ name: 'conversation', params: { token: item.token }}"
+ :class="{ 'has-unread-messages': item.unreadMessages }">
<template v-slot:icon>
<ConversationIcon
:item="item"
:hide-favorite="false" />
</template>
<template v-slot:subtitle>
- {{ simpleLastChatMessage }}
+ <strong v-if="item.unreadMessages">
+ {{ simpleLastChatMessage }}
+ </strong>
+ <template v-else>
+ {{ simpleLastChatMessage }}
+ </template>
</template>
<AppNavigationCounter v-if="item.unreadMessages"
slot="counter"
class="counter"
:highlighted="item.unreadMention">
- {{ item.unreadMessages }}
+ <strong>{{ item.unreadMessages }}</strong>
</AppNavigationCounter>
<template slot="actions">
<ActionButton v-if="canFavorite"
@@ -261,6 +267,13 @@ export default {
padding: 2px 6px;
}
}
+
+.has-unread-messages{
+ ::v-deep .acli__content__line-one__title {
+ font-weight: bold;
+ }
+}
+
.scroller {
flex: 1 0;
}