🎨
This commit is contained in:
		| @@ -72,6 +72,7 @@ exportRequested: "エクスポートをリクエストしました。これに | |||||||
| importRequested: "インポートをリクエストしました。これには時間がかかる場合があります。" | importRequested: "インポートをリクエストしました。これには時間がかかる場合があります。" | ||||||
| lists: "リスト" | lists: "リスト" | ||||||
| noLists: "リストはありません" | noLists: "リストはありません" | ||||||
|  | note: "ノート" | ||||||
| notes: "ノート" | notes: "ノート" | ||||||
| following: "フォロー" | following: "フォロー" | ||||||
| followers: "フォロワー" | followers: "フォロワー" | ||||||
|   | |||||||
| @@ -15,7 +15,7 @@ | |||||||
| 				<span v-if="visibility === 'followers'"><fa :icon="faUnlock"/></span> | 				<span v-if="visibility === 'followers'"><fa :icon="faUnlock"/></span> | ||||||
| 				<span v-if="visibility === 'specified'"><fa :icon="faEnvelope"/></span> | 				<span v-if="visibility === 'specified'"><fa :icon="faEnvelope"/></span> | ||||||
| 			</button> | 			</button> | ||||||
| 			<button class="submit _buttonPrimary" :disabled="!canPost" @click="post">{{ submitText }}</button> | 			<button class="submit _buttonPrimary" :disabled="!canPost" @click="post">{{ submitText }}<fa :icon="reply ? faReply : renote ? faQuoteRight : faPaperPlane"/></button> | ||||||
| 		</div> | 		</div> | ||||||
| 	</header> | 	</header> | ||||||
| 	<div class="form"> | 	<div class="form"> | ||||||
| @@ -52,7 +52,7 @@ | |||||||
|  |  | ||||||
| <script lang="ts"> | <script lang="ts"> | ||||||
| import Vue from 'vue'; | import Vue from 'vue'; | ||||||
| import { faTimes, faUpload, faChartPie, faGlobe, faHome, faUnlock, faEnvelope, faPlus, faPhotoVideo, faCloud, faLink, faAt, faBiohazard } from '@fortawesome/free-solid-svg-icons'; | import { faReply, faQuoteRight, faPaperPlane, faTimes, faUpload, faChartPie, faGlobe, faHome, faUnlock, faEnvelope, faPlus, faPhotoVideo, faCloud, faLink, faAt, faBiohazard } from '@fortawesome/free-solid-svg-icons'; | ||||||
| import { faEyeSlash, faLaughSquint } from '@fortawesome/free-regular-svg-icons'; | import { faEyeSlash, faLaughSquint } from '@fortawesome/free-regular-svg-icons'; | ||||||
| import insertTextAtCursor from 'insert-text-at-cursor'; | import insertTextAtCursor from 'insert-text-at-cursor'; | ||||||
| import { length } from 'stringz'; | import { length } from 'stringz'; | ||||||
| @@ -130,7 +130,7 @@ export default Vue.extend({ | |||||||
| 			draghover: false, | 			draghover: false, | ||||||
| 			quoteId: null, | 			quoteId: null, | ||||||
| 			recentHashtags: JSON.parse(localStorage.getItem('hashtags') || '[]'), | 			recentHashtags: JSON.parse(localStorage.getItem('hashtags') || '[]'), | ||||||
| 			faTimes, faUpload, faChartPie, faGlobe, faHome, faUnlock, faEnvelope, faEyeSlash, faLaughSquint, faPlus, faPhotoVideo, faCloud, faLink, faAt, faBiohazard | 			faReply, faQuoteRight, faPaperPlane, faTimes, faUpload, faChartPie, faGlobe, faHome, faUnlock, faEnvelope, faEyeSlash, faLaughSquint, faPlus, faPhotoVideo, faCloud, faLink, faAt, faBiohazard | ||||||
| 		}; | 		}; | ||||||
| 	}, | 	}, | ||||||
|  |  | ||||||
| @@ -163,10 +163,10 @@ export default Vue.extend({ | |||||||
|  |  | ||||||
| 		submitText(): string { | 		submitText(): string { | ||||||
| 			return this.renote | 			return this.renote | ||||||
| 				? this.$t('renote') | 				? this.$t('quote') | ||||||
| 				: this.reply | 				: this.reply | ||||||
| 					? this.$t('reply') | 					? this.$t('reply') | ||||||
| 					: this.$t('post'); | 					: this.$t('note'); | ||||||
| 		}, | 		}, | ||||||
|  |  | ||||||
| 		canPost(): boolean { | 		canPost(): boolean { | ||||||
| @@ -622,8 +622,9 @@ export default Vue.extend({ | |||||||
|  |  | ||||||
| 			> .submit { | 			> .submit { | ||||||
| 				margin: 16px 16px 16px 0; | 				margin: 16px 16px 16px 0; | ||||||
| 				padding: 0 16px; | 				padding: 0 12px; | ||||||
| 				line-height: 34px; | 				line-height: 34px; | ||||||
|  | 				font-weight: bold; | ||||||
| 				vertical-align: bottom; | 				vertical-align: bottom; | ||||||
| 				border-radius: 4px; | 				border-radius: 4px; | ||||||
|  |  | ||||||
| @@ -634,6 +635,10 @@ export default Vue.extend({ | |||||||
| 				&:disabled { | 				&:disabled { | ||||||
| 					opacity: 0.7; | 					opacity: 0.7; | ||||||
| 				} | 				} | ||||||
|  |  | ||||||
|  | 				> [data-icon] { | ||||||
|  | 					margin-left: 6px; | ||||||
|  | 				} | ||||||
| 			} | 			} | ||||||
| 		} | 		} | ||||||
| 	} | 	} | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user
	 syuilo
					syuilo