diff --git a/src/web/app/desktop/views/components/posts.post.vue b/src/web/app/desktop/views/components/posts.post.vue index 1981102334..458e244b3f 100644 --- a/src/web/app/desktop/views/components/posts.post.vue +++ b/src/web/app/desktop/views/components/posts.post.vue @@ -41,7 +41,7 @@ <div class="tags" v-if="p.tags && p.tags.length > 0"> <router-link v-for="tag in p.tags" :key="tag" :to="`/search?q=#${tag}`">{{ tag }}</router-link> </div> - <a class="quote" v-if="p.repost">RP:</a> + <a class="rp" v-if="p.repost">RP:</a> <mk-url-preview v-for="url in urls" :url="url" :key="url"/> </div> <div class="media" v-if="p.media"> @@ -432,7 +432,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/desktop/views/components/sub-post-content.vue b/src/web/app/desktop/views/components/sub-post-content.vue index f048eb4f0f..7f4c3b4f6f 100644 --- a/src/web/app/desktop/views/components/sub-post-content.vue +++ b/src/web/app/desktop/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 :ast="post.ast" :i="os.i"/> - <a class="quote" v-if="post.repost_id" :href="`/post:${post.repost_id}`">RP: ...</a> + <a class="rp" v-if="post.repost_id" :href="`/post:${post.repost_id}`">RP: ...</a> <mk-url-preview v-for="url in urls" :url="url" :key="url"/> </div> <details v-if="post.media"> @@ -45,7 +45,7 @@ export default Vue.extend({ margin-right 6px color #717171 - > .quote + > .rp margin-left 4px font-style oblique color #a0bf46 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