summaryrefslogtreecommitdiff
path: root/packages/frontend/src/components
diff options
context:
space:
mode:
authorsyuilo <4439005+syuilo@users.noreply.github.com>2025-04-07 10:29:51 +0900
committersyuilo <4439005+syuilo@users.noreply.github.com>2025-04-07 10:29:51 +0900
commit2349a5d20edbf3709c80865df56f136ed2b0b366 (patch)
tree4afea44366d9144e4eea7ddc74cd948bbe95dbef /packages/frontend/src/components
parentenhance(frontend): improve migration of old settings (diff)
downloadsharkey-2349a5d20edbf3709c80865df56f136ed2b0b366.tar.gz
sharkey-2349a5d20edbf3709c80865df56f136ed2b0b366.tar.bz2
sharkey-2349a5d20edbf3709c80865df56f136ed2b0b366.zip
🎨
Fix #15753
Diffstat (limited to 'packages/frontend/src/components')
-rw-r--r--packages/frontend/src/components/MkNotification.vue7
1 files changed, 7 insertions, 0 deletions
diff --git a/packages/frontend/src/components/MkNotification.vue b/packages/frontend/src/components/MkNotification.vue
index c2e8b8e2fe..13ffd6b7cc 100644
--- a/packages/frontend/src/components/MkNotification.vue
+++ b/packages/frontend/src/components/MkNotification.vue
@@ -28,6 +28,7 @@ SPDX-License-Identifier: AGPL-3.0-only
[$style.t_exportCompleted]: notification.type === 'exportCompleted',
[$style.t_login]: notification.type === 'login',
[$style.t_createToken]: notification.type === 'createToken',
+ [$style.t_chatRoomInvitationReceived]: notification.type === 'chatRoomInvitationReceived',
[$style.t_roleAssigned]: notification.type === 'roleAssigned' && notification.role.iconUrl == null,
}]"
>
@@ -374,6 +375,12 @@ function getActualReactedUsersCount(notification: Misskey.entities.Notification)
pointer-events: none;
}
+.t_chatRoomInvitationReceived {
+ padding: 3px;
+ background: var(--eventOther);
+ pointer-events: none;
+}
+
.tail {
flex: 1;
min-width: 0;