enhancement: Uses bold font-weight for unread notifications (#5073)
This commit is contained in:
parent
cd5e0c548c
commit
6105567238
1 changed files with 7 additions and 0 deletions
|
@ -13,6 +13,9 @@
|
||||||
<tr
|
<tr
|
||||||
v-for="notificationItem in notifications"
|
v-for="notificationItem in notifications"
|
||||||
:key="notificationItem.id"
|
:key="notificationItem.id"
|
||||||
|
:class="{
|
||||||
|
'is-unread': notificationItem.read_at === null,
|
||||||
|
}"
|
||||||
@click="() => onClickNotification(notificationItem)"
|
@click="() => onClickNotification(notificationItem)"
|
||||||
>
|
>
|
||||||
<td>
|
<td>
|
||||||
|
@ -163,6 +166,10 @@ export default {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.is-unread {
|
||||||
|
font-weight: var(--font-weight-bold);
|
||||||
|
}
|
||||||
|
|
||||||
.notifications--loader {
|
.notifications--loader {
|
||||||
font-size: var(--font-size-default);
|
font-size: var(--font-size-default);
|
||||||
display: flex;
|
display: flex;
|
||||||
|
|
Loading…
Reference in a new issue