🎨
This commit is contained in:
		| @@ -8,8 +8,6 @@ | |||||||
| 			<div> | 			<div> | ||||||
| 				<span class="username"><mk-acct :user="user" :detail="true" /></span> | 				<span class="username"><mk-acct :user="user" :detail="true" /></span> | ||||||
| 				<span v-if="user.isBot" title="%i18n:@is-bot%">%fa:robot%</span> | 				<span v-if="user.isBot" title="%i18n:@is-bot%">%fa:robot%</span> | ||||||
| 				<span class="location" v-if="user.host === null && user.profile.location">%fa:map-marker% {{ user.profile.location }}</span> |  | ||||||
| 				<span class="birthday" v-if="user.host === null && user.profile.birthday">%fa:birthday-cake% {{ user.profile.birthday.replace('-', '年').replace('-', '月') + '日' }} ({{ age }}歳)</span> |  | ||||||
| 			</div> | 			</div> | ||||||
| 		</div> | 		</div> | ||||||
| 	</div> | 	</div> | ||||||
| @@ -18,6 +16,10 @@ | |||||||
| 		<div class="description"> | 		<div class="description"> | ||||||
| 			<misskey-flavored-markdown v-if="user.description" :text="user.description" :i="$store.state.i"/> | 			<misskey-flavored-markdown v-if="user.description" :text="user.description" :i="$store.state.i"/> | ||||||
| 		</div> | 		</div> | ||||||
|  | 		<div class="info"> | ||||||
|  | 			<span class="location" v-if="user.host === null && user.profile.location">%fa:map-marker% {{ user.profile.location }}</span> | ||||||
|  | 			<span class="birthday" v-if="user.host === null && user.profile.birthday">%fa:birthday-cake% {{ user.profile.birthday.replace('-', '年').replace('-', '月') + '日' }} ({{ age }}歳)</span> | ||||||
|  | 		</div> | ||||||
| 		<div class="status"> | 		<div class="status"> | ||||||
| 			<span class="notes-count"><b>{{ user.notesCount | number }}</b>%i18n:@posts%</span> | 			<span class="notes-count"><b>{{ user.notesCount | number }}</b>%i18n:@posts%</span> | ||||||
| 			<span class="following clickable" @click="showFollowing"><b>{{ user.followingCount | number }}</b>%i18n:@following%</span> | 			<span class="following clickable" @click="showFollowing"><b>{{ user.followingCount | number }}</b>%i18n:@following%</span> | ||||||
| @@ -182,6 +184,14 @@ export default Vue.extend({ | |||||||
| 		padding 16px 16px 16px 154px | 		padding 16px 16px 16px 154px | ||||||
| 		color var(--text) | 		color var(--text) | ||||||
|  |  | ||||||
|  | 		> .info | ||||||
|  | 			margin-top 16px | ||||||
|  | 			padding-top 16px | ||||||
|  | 			border-top solid 1px var(--faceDivider) | ||||||
|  |  | ||||||
|  | 			> * | ||||||
|  | 				margin-right 16px | ||||||
|  |  | ||||||
| 		> .status | 		> .status | ||||||
| 			margin-top 16px | 			margin-top 16px | ||||||
| 			padding-top 16px | 			padding-top 16px | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user
	 syuilo
					syuilo