refine notification filtering to exclude explicitly unseen notifications

This commit is contained in:
pa
2026-02-22 21:26:48 +09:00
committed by Natsumi
parent 581933f873
commit 8296d31e67
5 changed files with 13 additions and 10 deletions

View File

@@ -1353,10 +1353,10 @@
</template>
<template v-else-if="feed.type === 'OnPlayerJoined'">
<span style="margin-left: 10px; color: #a3a3a3">has joined</span>
<span v-if="feed.platform === 'Desktop'" style="color: #409eff; margin-left: 10px"
<span v-if="feed.platform === 'Desktop'" style="color: #00b8ff; margin-left: 10px"
>Desktop</span
>
<span v-else-if="feed.platform === 'VR'" style="color: #409eff; margin-left: 10px">VR</span>
<span v-else-if="feed.platform === 'VR'" style="color: #00b8ff; margin-left: 10px">VR</span>
<span v-else-if="feed.platform === 'Quest'" style="color: #67c23a; margin-left: 10px"
>Android</span
>

View File

@@ -400,7 +400,7 @@ i.x-user-status.online {
}
i.x-user-status.joinme {
background: #409eff;
background: #00b8ff;
mask-image: url(/images/masks/joinme.svg);
}