diff options
| author | syuilo <4439005+syuilo@users.noreply.github.com> | 2025-04-07 10:29:51 +0900 |
|---|---|---|
| committer | syuilo <4439005+syuilo@users.noreply.github.com> | 2025-04-07 10:29:51 +0900 |
| commit | 2349a5d20edbf3709c80865df56f136ed2b0b366 (patch) | |
| tree | 4afea44366d9144e4eea7ddc74cd948bbe95dbef /packages | |
| parent | enhance(frontend): improve migration of old settings (diff) | |
| download | sharkey-2349a5d20edbf3709c80865df56f136ed2b0b366.tar.gz sharkey-2349a5d20edbf3709c80865df56f136ed2b0b366.tar.bz2 sharkey-2349a5d20edbf3709c80865df56f136ed2b0b366.zip | |
🎨
Fix #15753
Diffstat (limited to 'packages')
| -rw-r--r-- | packages/frontend/src/components/MkNotification.vue | 7 |
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; |