Skip to content
Snippets Groups Projects
Commit 4f7e1654 authored by Julian's avatar Julian
Browse files

Reorganize layout of notifications

parent 0a9f64da
No related branches found
No related tags found
1 merge request!1125Resolve "[Vue] Notifications look ugly"
......@@ -5,15 +5,26 @@
>
<template #default="{ mutate, loading, error }">
<v-list-item :input-value="!notification.read">
<v-list-item-avatar>
<v-icon
:class="notification.read ? 'grey lighten-1' : 'primary white--text'"
dark
>
mdi-monitor-dashboard
</v-icon>
</v-list-item-avatar>
<v-list-item-content>
<v-list-item-title>{{ notification.title }}</v-list-item-title>
<v-list-item-subtitle class="caption">
<v-chip color="primary" label x-small outlined>{{ notification.sender }}</v-chip>
<v-list-item-title>
{{ notification.title }}
</v-list-item-title>
<v-icon>mdi-circle-small</v-icon>
<v-list-item-subtitle class="font-weight-regular">
{{ notification.description }}
</v-list-item-subtitle>
<v-list-item-subtitle class="caption font-weight-regular">
<v-chip x-small outlined>{{ notification.sender }}</v-chip>
·
<v-tooltip bottom>
<template v-slot:activator="{ on, attrs }">
<span
......@@ -24,10 +35,6 @@
<span>{{ $d(new Date(notification.created), "long") }}</span>
</v-tooltip>
</v-list-item-subtitle>
<v-list-item-subtitle>
{{ notification.description }}
</v-list-item-subtitle>
</v-list-item-content>
<v-list-item-action>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment