parent
6683d50bae
commit
22a9e950c7
|
@ -1833,6 +1833,7 @@ deck/deck.tl-column.vue:
|
||||||
edit: "オプション"
|
edit: "オプション"
|
||||||
|
|
||||||
deck/deck.user-column.vue:
|
deck/deck.user-column.vue:
|
||||||
|
follows-you: "フォローされています"
|
||||||
posts: "投稿"
|
posts: "投稿"
|
||||||
following: "フォロー"
|
following: "フォロー"
|
||||||
followers: "フォロワー"
|
followers: "フォロワー"
|
||||||
|
|
|
@ -20,6 +20,7 @@
|
||||||
<mk-user-name :user="user"/>
|
<mk-user-name :user="user"/>
|
||||||
</span>
|
</span>
|
||||||
<span class="acct">@{{ user | acct }} <fa v-if="user.isLocked == true" class="locked" icon="lock" fixed-width/></span>
|
<span class="acct">@{{ user | acct }} <fa v-if="user.isLocked == true" class="locked" icon="lock" fixed-width/></span>
|
||||||
|
<span class="followed" v-if="user.isFollowed">{{ $t('follows-you') }}</span>
|
||||||
</div>
|
</div>
|
||||||
</header>
|
</header>
|
||||||
<div class="info">
|
<div class="info">
|
||||||
|
@ -376,6 +377,7 @@ export default Vue.extend({
|
||||||
text-shadow 0 0 8px #000
|
text-shadow 0 0 8px #000
|
||||||
|
|
||||||
> .acct
|
> .acct
|
||||||
|
display block
|
||||||
font-size 14px
|
font-size 14px
|
||||||
opacity 0.7
|
opacity 0.7
|
||||||
text-shadow 0 0 8px #000
|
text-shadow 0 0 8px #000
|
||||||
|
@ -383,6 +385,15 @@ export default Vue.extend({
|
||||||
> .locked
|
> .locked
|
||||||
opacity 0.8
|
opacity 0.8
|
||||||
|
|
||||||
|
> .followed
|
||||||
|
display inline-block
|
||||||
|
font-size 12px
|
||||||
|
background rgba(0, 0, 0, 0.5)
|
||||||
|
opacity 0.7
|
||||||
|
margin-top: 2px
|
||||||
|
padding 4px
|
||||||
|
border-radius 4px
|
||||||
|
|
||||||
> .info
|
> .info
|
||||||
padding 16px
|
padding 16px
|
||||||
font-size 12px
|
font-size 12px
|
||||||
|
|
Loading…
Reference in New Issue