enhancement: Uses bold font-weight for unread notifications (#5073)
This commit is contained in:
@@ -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;
|
||||||
|
|||||||
Reference in New Issue
Block a user