diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2018-02-28 00:38:00 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2018-02-28 00:38:00 +0900 |
| commit | 94745e11acd9339f5ed732f7435ad17830539241 (patch) | |
| tree | 01a9f5a0b9e2353e2423b2c7a76fba39c420c5b5 /src/web/app/mobile/views/components | |
| parent | v3921 (diff) | |
| download | misskey-94745e11acd9339f5ed732f7435ad17830539241.tar.gz misskey-94745e11acd9339f5ed732f7435ad17830539241.tar.bz2 misskey-94745e11acd9339f5ed732f7435ad17830539241.zip | |
Fix bug
Diffstat (limited to 'src/web/app/mobile/views/components')
| -rw-r--r-- | src/web/app/mobile/views/components/posts.post.vue | 4 | ||||
| -rw-r--r-- | src/web/app/mobile/views/components/sub-post-content.vue | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/web/app/mobile/views/components/posts.post.vue b/src/web/app/mobile/views/components/posts.post.vue index 2862191b34..3038cdb0ed 100644 --- a/src/web/app/mobile/views/components/posts.post.vue +++ b/src/web/app/mobile/views/components/posts.post.vue @@ -39,7 +39,7 @@ <router-link v-for="tag in p.tags" :key="tag" :to="`/search?q=#${tag}`">{{ tag }}</router-link> </div> <mk-url-preview v-for="url in urls" :url="url" :key="url"/> - <a class="quote" v-if="p.repost != null">RP:</a> + <a class="rp" v-if="p.repost != null">RP:</a> </div> <div class="media" v-if="p.media"> <mk-images :images="p.media"/> @@ -365,7 +365,7 @@ export default Vue.extend({ margin-right 8px color #717171 - > .quote + > .rp margin-left 4px font-style oblique color #a0bf46 diff --git a/src/web/app/mobile/views/components/sub-post-content.vue b/src/web/app/mobile/views/components/sub-post-content.vue index 429e760050..b97f082559 100644 --- a/src/web/app/mobile/views/components/sub-post-content.vue +++ b/src/web/app/mobile/views/components/sub-post-content.vue @@ -3,7 +3,7 @@ <div class="body"> <a class="reply" v-if="post.reply_id">%fa:reply%</a> <mk-post-html v-if="post.ast" :ast="post.ast" :i="os.i"/> - <a class="quote" v-if="post.repost_id">RP: ...</a> + <a class="rp" v-if="post.repost_id">RP: ...</a> </div> <details v-if="post.media"> <summary>({{ post.media.length }}個のメディア)</summary> @@ -32,7 +32,7 @@ export default Vue.extend({ margin-right 6px color #717171 - > .quote + > .rp margin-left 4px font-style oblique color #a0bf46 |