This commit is contained in:
syuilo 2018-02-28 00:38:00 +09:00
parent 69af83b5eb
commit 94745e11ac
4 changed files with 8 additions and 8 deletions

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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