diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2018-10-14 10:16:02 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2018-10-14 10:16:02 +0900 |
| commit | c7988fb6f5bc42bca92da97c91e555df0a2782db (patch) | |
| tree | 55678b60e7a85df3ece4b098088dbaa845311d2c /src/client/app/mobile/views/components | |
| parent | Fix #2901 (diff) | |
| download | misskey-c7988fb6f5bc42bca92da97c91e555df0a2782db.tar.gz misskey-c7988fb6f5bc42bca92da97c91e555df0a2782db.tar.bz2 misskey-c7988fb6f5bc42bca92da97c91e555df0a2782db.zip | |
:art:
Diffstat (limited to 'src/client/app/mobile/views/components')
| -rw-r--r-- | src/client/app/mobile/views/components/notes.vue | 4 | ||||
| -rw-r--r-- | src/client/app/mobile/views/components/notifications.vue | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/client/app/mobile/views/components/notes.vue b/src/client/app/mobile/views/components/notes.vue index 62ab8c442a..055b731f3c 100644 --- a/src/client/app/mobile/views/components/notes.vue +++ b/src/client/app/mobile/views/components/notes.vue @@ -4,7 +4,7 @@ <slot name="empty" v-if="notes.length == 0 && !fetching && requestInitPromise == null"></slot> - <div class="skeleton" v-if="fetching"> + <div class="placeholder" v-if="fetching"> <template v-for="i in 10"> <mk-note-skeleton :key="i"/> </template> @@ -253,7 +253,7 @@ export default Vue.extend({ [data-fa] margin-right 8px - > .skeleton + > .placeholder padding 16px opacity 0.3 diff --git a/src/client/app/mobile/views/components/notifications.vue b/src/client/app/mobile/views/components/notifications.vue index fb8a5c1061..f33808a3c1 100644 --- a/src/client/app/mobile/views/components/notifications.vue +++ b/src/client/app/mobile/views/components/notifications.vue @@ -1,6 +1,6 @@ <template> <div class="mk-notifications"> - <div class="skeleton" v-if="fetching"> + <div class="placeholder" v-if="fetching"> <template v-for="i in 10"> <mk-note-skeleton :key="i"/> </template> @@ -184,7 +184,7 @@ export default Vue.extend({ text-align center color #aaa - > .skeleton + > .placeholder padding 16px opacity 0.3 |