🎨
This commit is contained in:
		
							parent
							
								
									001b660cbe
								
							
						
					
					
						commit
						6b7a3435a5
					
				
					 15 changed files with 30 additions and 30 deletions
				
			
		|  | @ -244,7 +244,7 @@ function setAsUploadFolder() { | |||
| function onContextmenu(ev: MouseEvent) { | ||||
| 	os.contextMenu([{ | ||||
| 		text: i18n.ts.openInWindow, | ||||
| 		icon: 'fas fa-window-restore', | ||||
| 		icon: 'ti ti-app-window', | ||||
| 		action: () => { | ||||
| 			os.popup(defineAsyncComponent(() => import('@/components/MkDriveWindow.vue')), { | ||||
| 				initialFolder: props.folder, | ||||
|  |  | |||
|  | @ -607,7 +607,7 @@ function getMenu() { | |||
| 		action: () => { deleteFolder(folder.value as Misskey.entities.DriveFolder); }, | ||||
| 	} : undefined, { | ||||
| 		text: i18n.ts.createFolder, | ||||
| 		icon: 'fas fa-folder-plus', | ||||
| 		icon: 'ti ti-folder-plus', | ||||
| 		action: () => { createFolder(); }, | ||||
| 	}]; | ||||
| } | ||||
|  |  | |||
|  | @ -46,7 +46,7 @@ | |||
| 			</section> | ||||
| 
 | ||||
| 			<section> | ||||
| 				<header class="_acrylic"><i class="far fa-clock ti-fw"></i> {{ i18n.ts.recentUsed }}</header> | ||||
| 				<header class="_acrylic"><i class="ti ti-clock ti-fw"></i> {{ i18n.ts.recentUsed }}</header> | ||||
| 				<div class="body"> | ||||
| 					<button | ||||
| 						v-for="emoji in recentlyUsedEmojis" | ||||
|  |  | |||
|  | @ -7,7 +7,7 @@ | |||
| > | ||||
| 	<template v-if="!wait"> | ||||
| 		<template v-if="hasPendingFollowRequestFromYou && user.isLocked"> | ||||
| 			<span v-if="full">{{ i18n.ts.followRequestPending }}</span><i class="fas fa-hourglass-half"></i> | ||||
| 			<span v-if="full">{{ i18n.ts.followRequestPending }}</span><i class="ti ti-hourglass-empty"></i> | ||||
| 		</template> | ||||
| 		<template v-else-if="hasPendingFollowRequestFromYou && !user.isLocked"> | ||||
| 			<!-- つまりリモートフォローの場合。 --> | ||||
|  |  | |||
|  | @ -5,7 +5,7 @@ | |||
| 	</div> | ||||
| 	<div class="value"> | ||||
| 		<slot name="value"></slot> | ||||
| 		<button v-if="copy" v-tooltip="i18n.ts.copy" class="_textButton" style="margin-left: 0.5em;" @click="copy_"><i class="far fa-copy"></i></button> | ||||
| 		<button v-if="copy" v-tooltip="i18n.ts.copy" class="_textButton" style="margin-left: 0.5em;" @click="copy_"><i class="ti ti-copy"></i></button> | ||||
| 	</div> | ||||
| </div> | ||||
| </template> | ||||
|  |  | |||
|  | @ -5,7 +5,7 @@ | |||
| 		<template #prefix><i class="ti ti-key"></i></template> | ||||
| 	</MkInput> | ||||
| 	<MkInput v-model="username" class="_formBlock" type="text" pattern="^[a-zA-Z0-9_]{1,20}$" :spellcheck="false" required data-cy-signup-username @update:modelValue="onChangeUsername"> | ||||
| 		<template #label>{{ i18n.ts.username }} <div v-tooltip:dialog="i18n.ts.usernameInfo" class="_button _help"><i class="far fa-question-circle"></i></div></template> | ||||
| 		<template #label>{{ i18n.ts.username }} <div v-tooltip:dialog="i18n.ts.usernameInfo" class="_button _help"><i class="ti ti-question-circle"></i></div></template> | ||||
| 		<template #prefix>@</template> | ||||
| 		<template #suffix>@{{ host }}</template> | ||||
| 		<template #caption> | ||||
|  | @ -19,7 +19,7 @@ | |||
| 		</template> | ||||
| 	</MkInput> | ||||
| 	<MkInput v-if="instance.emailRequiredForSignup" v-model="email" class="_formBlock" :debounce="true" type="email" :spellcheck="false" required data-cy-signup-email @update:modelValue="onChangeEmail"> | ||||
| 		<template #label>{{ i18n.ts.emailAddress }} <div v-tooltip:dialog="i18n.ts._signup.emailAddressInfo" class="_button _help"><i class="far fa-question-circle"></i></div></template> | ||||
| 		<template #label>{{ i18n.ts.emailAddress }} <div v-tooltip:dialog="i18n.ts._signup.emailAddressInfo" class="_button _help"><i class="ti ti-question-circle"></i></div></template> | ||||
| 		<template #prefix><i class="ti ti-mail"></i></template> | ||||
| 		<template #caption> | ||||
| 			<span v-if="emailState === 'wait'" style="color:#999"><MkLoading :em="true"/> {{ i18n.ts.checking }}</span> | ||||
|  |  | |||
|  | @ -34,7 +34,7 @@ function clear() { | |||
| 
 | ||||
| const headerActions = $computed(() => [{ | ||||
| 	asFullButton: true, | ||||
| 	icon: 'fas fa-up-right-from-square', | ||||
| 	icon: 'ti ti-external-link', | ||||
| 	text: i18n.ts.dashboard, | ||||
| 	handler: () => { | ||||
| 		window.open(config.url + '/queue', '_blank'); | ||||
|  |  | |||
|  | @ -18,8 +18,8 @@ | |||
| 						</div> | ||||
| 						<div class="actions"> | ||||
| 							<div class="like"> | ||||
| 								<MkButton v-if="post.isLiked" v-tooltip="i18n.ts._gallery.unlike" class="button" primary @click="unlike()"><i class="ti ti-heart"></i><span v-if="post.likedCount > 0" class="count">{{ post.likedCount }}</span></MkButton> | ||||
| 								<MkButton v-else v-tooltip="i18n.ts._gallery.like" class="button" @click="like()"><i class="far fa-heart"></i><span v-if="post.likedCount > 0" class="count">{{ post.likedCount }}</span></MkButton> | ||||
| 								<MkButton v-if="post.isLiked" v-tooltip="i18n.ts._gallery.unlike" class="button" primary @click="unlike()"><i class="ti ti-heart-off"></i><span v-if="post.likedCount > 0" class="count">{{ post.likedCount }}</span></MkButton> | ||||
| 								<MkButton v-else v-tooltip="i18n.ts._gallery.like" class="button" @click="like()"><i class="ti ti-heart"></i><span v-if="post.likedCount > 0" class="count">{{ post.likedCount }}</span></MkButton> | ||||
| 							</div> | ||||
| 							<div class="other"> | ||||
| 								<button v-if="$i && $i.id === post.user.id" v-tooltip="i18n.ts.edit" v-click-anime class="_button" @click="edit"><i class="ti ti-pencil ti-fw"></i></button> | ||||
|  |  | |||
|  | @ -18,8 +18,8 @@ | |||
| 					</div> | ||||
| 					<div class="actions"> | ||||
| 						<div class="like"> | ||||
| 							<MkButton v-if="page.isLiked" v-tooltip="i18n.ts._pages.unlike" class="button" primary @click="unlike()"><i class="ti ti-heart"></i><span v-if="page.likedCount > 0" class="count">{{ page.likedCount }}</span></MkButton> | ||||
| 							<MkButton v-else v-tooltip="i18n.ts._pages.like" class="button" @click="like()"><i class="far fa-heart"></i><span v-if="page.likedCount > 0" class="count">{{ page.likedCount }}</span></MkButton> | ||||
| 							<MkButton v-if="page.isLiked" v-tooltip="i18n.ts._pages.unlike" class="button" primary @click="unlike()"><i class="ti ti-heart-off"></i><span v-if="page.likedCount > 0" class="count">{{ page.likedCount }}</span></MkButton> | ||||
| 							<MkButton v-else v-tooltip="i18n.ts._pages.like" class="button" @click="like()"><i class="ti ti-heart"></i><span v-if="page.likedCount > 0" class="count">{{ page.likedCount }}</span></MkButton> | ||||
| 						</div> | ||||
| 						<div class="other"> | ||||
| 							<button v-tooltip="i18n.ts.shareWithNote" v-click-anime class="_button" @click="shareWithNote"><i class="ti ti-repeat ti-fw"></i></button> | ||||
|  | @ -44,8 +44,8 @@ | |||
| 					</div> | ||||
| 				</div> | ||||
| 				<div class="footer"> | ||||
| 					<div><i class="far fa-clock"></i> {{ i18n.ts.createdAt }}: <MkTime :time="page.createdAt" mode="detail"/></div> | ||||
| 					<div v-if="page.createdAt != page.updatedAt"><i class="far fa-clock"></i> {{ i18n.ts.updatedAt }}: <MkTime :time="page.updatedAt" mode="detail"/></div> | ||||
| 					<div><i class="ti ti-clock"></i> {{ i18n.ts.createdAt }}: <MkTime :time="page.createdAt" mode="detail"/></div> | ||||
| 					<div v-if="page.createdAt != page.updatedAt"><i class="ti ti-clock"></i> {{ i18n.ts.updatedAt }}: <MkTime :time="page.updatedAt" mode="detail"/></div> | ||||
| 				</div> | ||||
| 				<MkAd :prefer="['horizontal', 'horizontal-big']"/> | ||||
| 				<MkContainer :max-height="300" :foldable="true" class="other"> | ||||
|  |  | |||
|  | @ -13,7 +13,7 @@ | |||
| 		<!-- <MkRadio v-model="menuDisplay" value="hide" disabled>{{ i18n.ts._menuDisplay.hide }}</MkRadio>--> <!-- TODO: サイドバーを完全に隠せるようにすると、別途ハンバーガーボタンのようなものをUIに表示する必要があり面倒 --> | ||||
| 	</FormRadios> | ||||
| 
 | ||||
| 	<FormButton danger class="_formBlock" @click="reset()"><i class="fas fa-redo"></i> {{ i18n.ts.default }}</FormButton> | ||||
| 	<FormButton danger class="_formBlock" @click="reset()"><i class="ti ti-reload"></i> {{ i18n.ts.default }}</FormButton> | ||||
| </div> | ||||
| </template> | ||||
| 
 | ||||
|  |  | |||
|  | @ -19,12 +19,12 @@ | |||
| 
 | ||||
| 	<FormInput v-model="profile.location" manual-save class="_formBlock"> | ||||
| 		<template #label>{{ i18n.ts.location }}</template> | ||||
| 		<template #prefix><i class="fas fa-map-marker-alt"></i></template> | ||||
| 		<template #prefix><i class="ti ti-map-pin"></i></template> | ||||
| 	</FormInput> | ||||
| 
 | ||||
| 	<FormInput v-model="profile.birthday" type="date" manual-save class="_formBlock"> | ||||
| 		<template #label>{{ i18n.ts.birthday }}</template> | ||||
| 		<template #prefix><i class="fas fa-birthday-cake"></i></template> | ||||
| 		<template #prefix><i class="ti ti-cake"></i></template> | ||||
| 	</FormInput> | ||||
| 
 | ||||
| 	<FormSelect v-model="profile.lang" class="_formBlock"> | ||||
|  | @ -34,7 +34,7 @@ | |||
| 
 | ||||
| 	<FormSlot class="_formBlock"> | ||||
| 		<FormFolder> | ||||
| 			<template #icon><i class="fas fa-table-list"></i></template> | ||||
| 			<template #icon><i class="ti ti-list"></i></template> | ||||
| 			<template #label>{{ i18n.ts._profile.metadataEdit }}</template> | ||||
| 
 | ||||
| 			<div class="_formRoot"> | ||||
|  |  | |||
|  | @ -73,6 +73,6 @@ const headerTabs = $computed(() => []); | |||
| 
 | ||||
| definePageMetadata({ | ||||
| 	title: i18n.ts._theme.manage, | ||||
| 	icon: 'fas fa-folder-open', | ||||
| 	icon: 'ti ti-tool', | ||||
| }); | ||||
| </script> | ||||
|  |  | |||
|  | @ -12,7 +12,7 @@ | |||
| 				<FormLink v-for="webhook in items" :key="webhook.id" :to="`/settings/webhook/edit/${webhook.id}`" class="_formBlock"> | ||||
| 					<template #icon> | ||||
| 						<i v-if="webhook.active === false" class="ti ti-player-pause"></i> | ||||
| 						<i v-else-if="webhook.latestStatus === null" class="far fa-circle"></i> | ||||
| 						<i v-else-if="webhook.latestStatus === null" class="ti ti-circle"></i> | ||||
| 						<i v-else-if="[200, 201, 204].includes(webhook.latestStatus)" class="ti ti-check" :style="{ color: 'var(--success)' }"></i> | ||||
| 						<i v-else class="ti ti-alert-triangle" :style="{ color: 'var(--error)' }"></i> | ||||
| 					</template> | ||||
|  |  | |||
|  | @ -17,10 +17,10 @@ | |||
| 							<MkUserName class="name" :user="user" :nowrap="true"/> | ||||
| 							<div class="bottom"> | ||||
| 								<span class="username"><MkAcct :user="user" :detail="true"/></span> | ||||
| 								<span v-if="user.isAdmin" :title="i18n.ts.isAdmin" style="color: var(--badge);"><i class="fas fa-bookmark"></i></span> | ||||
| 								<span v-if="!user.isAdmin && user.isModerator" :title="i18n.ts.isModerator" style="color: var(--badge);"><i class="far fa-bookmark"></i></span> | ||||
| 								<span v-if="user.isAdmin" :title="i18n.ts.isAdmin" style="color: var(--badge);"><i class="ti ti-shield"></i></span> | ||||
| 								<span v-if="!user.isAdmin && user.isModerator" :title="i18n.ts.isModerator" style="color: var(--badge);"><i class="ti ti-shield"></i></span> | ||||
| 								<span v-if="user.isLocked" :title="i18n.ts.isLocked"><i class="ti ti-lock"></i></span> | ||||
| 								<span v-if="user.isBot" :title="i18n.ts.isBot"><i class="fas fa-robot"></i></span> | ||||
| 								<span v-if="user.isBot" :title="i18n.ts.isBot"><i class="ti ti-robot"></i></span> | ||||
| 							</div> | ||||
| 						</div> | ||||
| 						<span v-if="$i && $i.id != user.id && user.isFollowed" class="followed">{{ i18n.ts.followsYou }}</span> | ||||
|  | @ -34,10 +34,10 @@ | |||
| 						<MkUserName :user="user" :nowrap="false" class="name"/> | ||||
| 						<div class="bottom"> | ||||
| 							<span class="username"><MkAcct :user="user" :detail="true"/></span> | ||||
| 							<span v-if="user.isAdmin" :title="i18n.ts.isAdmin" style="color: var(--badge);"><i class="fas fa-bookmark"></i></span> | ||||
| 							<span v-if="!user.isAdmin && user.isModerator" :title="i18n.ts.isModerator" style="color: var(--badge);"><i class="far fa-bookmark"></i></span> | ||||
| 							<span v-if="user.isAdmin" :title="i18n.ts.isAdmin" style="color: var(--badge);"><i class="ti ti-shield"></i></span> | ||||
| 							<span v-if="!user.isAdmin && user.isModerator" :title="i18n.ts.isModerator" style="color: var(--badge);"><i class="ti ti-shield"></i></span> | ||||
| 							<span v-if="user.isLocked" :title="i18n.ts.isLocked"><i class="ti ti-lock"></i></span> | ||||
| 							<span v-if="user.isBot" :title="i18n.ts.isBot"><i class="fas fa-robot"></i></span> | ||||
| 							<span v-if="user.isBot" :title="i18n.ts.isBot"><i class="ti ti-robot"></i></span> | ||||
| 						</div> | ||||
| 					</div> | ||||
| 					<div class="description"> | ||||
|  | @ -46,15 +46,15 @@ | |||
| 					</div> | ||||
| 					<div class="fields system"> | ||||
| 						<dl v-if="user.location" class="field"> | ||||
| 							<dt class="name"><i class="fas fa-map-marker ti-fw"></i> {{ i18n.ts.location }}</dt> | ||||
| 							<dt class="name"><i class="ti ti-map-pin ti-fw"></i> {{ i18n.ts.location }}</dt> | ||||
| 							<dd class="value">{{ user.location }}</dd> | ||||
| 						</dl> | ||||
| 						<dl v-if="user.birthday" class="field"> | ||||
| 							<dt class="name"><i class="fas fa-birthday-cake ti-fw"></i> {{ i18n.ts.birthday }}</dt> | ||||
| 							<dt class="name"><i class="ti ti-cake ti-fw"></i> {{ i18n.ts.birthday }}</dt> | ||||
| 							<dd class="value">{{ user.birthday.replace('-', '/').replace('-', '/') }} ({{ $t('yearsOld', { age }) }})</dd> | ||||
| 						</dl> | ||||
| 						<dl class="field"> | ||||
| 							<dt class="name"><i class="fas fa-calendar-alt ti-fw"></i> {{ i18n.ts.registeredDate }}</dt> | ||||
| 							<dt class="name"><i class="ti ti-calendar ti-fw"></i> {{ i18n.ts.registeredDate }}</dt> | ||||
| 							<dd class="value">{{ new Date(user.createdAt).toLocaleString() }} (<MkTime :time="user.createdAt"/>)</dd> | ||||
| 						</dl> | ||||
| 					</div> | ||||
|  |  | |||
|  | @ -1,6 +1,6 @@ | |||
| <template> | ||||
| <MkContainer :max-height="300" :foldable="true"> | ||||
| 	<template #header><i class="fas fa-image" style="margin-right: 0.5em;"></i>{{ $ts.images }}</template> | ||||
| 	<template #header><i class="ti ti-photo" style="margin-right: 0.5em;"></i>{{ $ts.images }}</template> | ||||
| 	<div class="ujigsodd"> | ||||
| 		<MkLoading v-if="fetching"/> | ||||
| 		<div v-if="!fetching && images.length > 0" class="stream"> | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue