diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2021-04-18 23:25:55 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2021-04-18 23:25:55 +0900 |
| commit | 631091940ba13f23dd705596a243c8c585f0d64e (patch) | |
| tree | 571966ad2bf8dde14026b4d253c0bb2d597c580f /src/client/components | |
| parent | Merge branch 'develop' (diff) | |
| parent | 12.77.1 (diff) | |
| download | misskey-631091940ba13f23dd705596a243c8c585f0d64e.tar.gz misskey-631091940ba13f23dd705596a243c8c585f0d64e.tar.bz2 misskey-631091940ba13f23dd705596a243c8c585f0d64e.zip | |
Merge branch 'develop'
Diffstat (limited to 'src/client/components')
| -rw-r--r-- | src/client/components/date-separated-list.vue | 8 | ||||
| -rw-r--r-- | src/client/components/notifications.vue | 4 |
2 files changed, 2 insertions, 10 deletions
diff --git a/src/client/components/date-separated-list.vue b/src/client/components/date-separated-list.vue index 012ed42385..0f2823d392 100644 --- a/src/client/components/date-separated-list.vue +++ b/src/client/components/date-separated-list.vue @@ -171,12 +171,4 @@ export default defineComponent({ } } } - -._inContainer_ .sqadhkmv > * { - margin: 0 !important; - border: none; - border-bottom: solid 0.5px var(--divider); - border-radius: 0; - box-shadow: none; -} </style> diff --git a/src/client/components/notifications.vue b/src/client/components/notifications.vue index 1b789093ef..161419f891 100644 --- a/src/client/components/notifications.vue +++ b/src/client/components/notifications.vue @@ -6,8 +6,8 @@ <p class="mfcuwfyp" v-else-if="empty">{{ $ts.noNotifications }}</p> - <div v-else class="_magnetParent"> - <XList class="notifications _magnetChild" :items="items" v-slot="{ item: notification }" :no-gap="true"> + <div v-else> + <XList class="notifications" :items="items" v-slot="{ item: notification }" :no-gap="true"> <XNote v-if="['reply', 'quote', 'mention'].includes(notification.type)" :note="notification.note" @update:note="noteUpdated(notification.note, $event)" :key="notification.id"/> <XNotification v-else :notification="notification" :with-time="true" :full="true" class="_panel notification" :key="notification.id"/> </XList> |