🎨
This commit is contained in:
		
							parent
							
								
									738593d38c
								
							
						
					
					
						commit
						deaea7ce9f
					
				
					 8 changed files with 9 additions and 9 deletions
				
			
		|  | @ -16,8 +16,8 @@ | ||||||
| 	@dragend="onDragend" | 	@dragend="onDragend" | ||||||
| > | > | ||||||
| 	<p class="name"> | 	<p class="name"> | ||||||
| 		<template v-if="hover"><i class="fas fa-folder-open ti-fw"></i></template> | 		<template v-if="hover"><i class="ti ti-folder ti-fw"></i></template> | ||||||
| 		<template v-if="!hover"><i class="fas fa-folder ti-fw"></i></template> | 		<template v-if="!hover"><i class="ti ti-folder ti-fw"></i></template> | ||||||
| 		{{ folder.name }} | 		{{ folder.name }} | ||||||
| 	</p> | 	</p> | ||||||
| 	<p v-if="defaultStore.state.uploadFolder == folder.id" class="upload"> | 	<p v-if="defaultStore.state.uploadFolder == folder.id" class="upload"> | ||||||
|  |  | ||||||
|  | @ -8,7 +8,7 @@ | ||||||
| 			<i v-if="notification.type === 'follow'" class="ti ti-plus"></i> | 			<i v-if="notification.type === 'follow'" class="ti ti-plus"></i> | ||||||
| 			<i v-else-if="notification.type === 'receiveFollowRequest'" class="ti ti-clock"></i> | 			<i v-else-if="notification.type === 'receiveFollowRequest'" class="ti ti-clock"></i> | ||||||
| 			<i v-else-if="notification.type === 'followRequestAccepted'" class="ti ti-check"></i> | 			<i v-else-if="notification.type === 'followRequestAccepted'" class="ti ti-check"></i> | ||||||
| 			<i v-else-if="notification.type === 'groupInvited'" class="fas fa-id-card-alt"></i> | 			<i v-else-if="notification.type === 'groupInvited'" class="ti ti-certificate-2"></i> | ||||||
| 			<i v-else-if="notification.type === 'renote'" class="ti ti-repeat"></i> | 			<i v-else-if="notification.type === 'renote'" class="ti ti-repeat"></i> | ||||||
| 			<i v-else-if="notification.type === 'reply'" class="ti ti-arrow-back-up"></i> | 			<i v-else-if="notification.type === 'reply'" class="ti ti-arrow-back-up"></i> | ||||||
| 			<i v-else-if="notification.type === 'mention'" class="ti ti-at"></i> | 			<i v-else-if="notification.type === 'mention'" class="ti ti-at"></i> | ||||||
|  |  | ||||||
|  | @ -34,7 +34,7 @@ | ||||||
| 				</MkInput> | 				</MkInput> | ||||||
| 				<MkInput v-model="token" type="text" pattern="^[0-9]{6}$" autocomplete="off" :spellcheck="false" required> | 				<MkInput v-model="token" type="text" pattern="^[0-9]{6}$" autocomplete="off" :spellcheck="false" required> | ||||||
| 					<template #label>{{ i18n.ts.token }}</template> | 					<template #label>{{ i18n.ts.token }}</template> | ||||||
| 					<template #prefix><i class="fas fa-gavel"></i></template> | 					<template #prefix><i class="ti ti-123"></i></template> | ||||||
| 				</MkInput> | 				</MkInput> | ||||||
| 				<MkButton type="submit" :disabled="signing" primary style="margin: 0 auto;">{{ signing ? i18n.ts.loggingIn : i18n.ts.login }}</MkButton> | 				<MkButton type="submit" :disabled="signing" primary style="margin: 0 auto;">{{ signing ? i18n.ts.loggingIn : i18n.ts.login }}</MkButton> | ||||||
| 			</div> | 			</div> | ||||||
|  |  | ||||||
|  | @ -1,7 +1,7 @@ | ||||||
| <template> | <template> | ||||||
| <!-- eslint-disable vue/no-mutating-props --> | <!-- eslint-disable vue/no-mutating-props --> | ||||||
| <XContainer :draggable="true" @remove="() => $emit('remove')"> | <XContainer :draggable="true" @remove="() => $emit('remove')"> | ||||||
| 	<template #header><i class="fas fa-sticky-note"></i> {{ $ts._pages.blocks.note }}</template> | 	<template #header><i class="ti ti-note"></i> {{ $ts._pages.blocks.note }}</template> | ||||||
| 
 | 
 | ||||||
| 	<section style="padding: 0 16px 0 16px;"> | 	<section style="padding: 0 16px 0 16px;"> | ||||||
| 		<MkInput v-model="id"> | 		<MkInput v-model="id"> | ||||||
|  |  | ||||||
|  | @ -1,7 +1,7 @@ | ||||||
| <template> | <template> | ||||||
| <!-- eslint-disable vue/no-mutating-props --> | <!-- eslint-disable vue/no-mutating-props --> | ||||||
| <XContainer :draggable="true" @remove="() => $emit('remove')"> | <XContainer :draggable="true" @remove="() => $emit('remove')"> | ||||||
| 	<template #header><i class="fas fa-sticky-note"></i> {{ props.modelValue.title }}</template> | 	<template #header><i class="ti ti-note"></i> {{ props.modelValue.title }}</template> | ||||||
| 	<template #func> | 	<template #func> | ||||||
| 		<button class="_button" @click="rename()"> | 		<button class="_button" @click="rename()"> | ||||||
| 			<i class="ti ti-pencil"></i> | 			<i class="ti ti-pencil"></i> | ||||||
|  |  | ||||||
|  | @ -275,7 +275,7 @@ const headerTabs = $computed(() => [{ | ||||||
| }, { | }, { | ||||||
| 	key: 'contents', | 	key: 'contents', | ||||||
| 	title: i18n.ts._pages.contents, | 	title: i18n.ts._pages.contents, | ||||||
| 	icon: 'fas fa-sticky-note', | 	icon: 'ti ti-note', | ||||||
| }]); | }]); | ||||||
| 
 | 
 | ||||||
| definePageMetadata(computed(() => { | definePageMetadata(computed(() => { | ||||||
|  |  | ||||||
|  | @ -76,7 +76,7 @@ const headerTabs = $computed(() => [{ | ||||||
| 
 | 
 | ||||||
| definePageMetadata(computed(() => ({ | definePageMetadata(computed(() => ({ | ||||||
| 	title: i18n.ts.pages, | 	title: i18n.ts.pages, | ||||||
| 	icon: 'fas fa-sticky-note', | 	icon: 'ti ti-note', | ||||||
| }))); | }))); | ||||||
| </script> | </script> | ||||||
| 
 | 
 | ||||||
|  |  | ||||||
|  | @ -1,6 +1,6 @@ | ||||||
| <template> | <template> | ||||||
| <MkContainer :show-header="widgetProps.showHeader" class="mkw-memo"> | <MkContainer :show-header="widgetProps.showHeader" class="mkw-memo"> | ||||||
| 	<template #header><i class="fas fa-sticky-note"></i>{{ i18n.ts._widgets.memo }}</template> | 	<template #header><i class="ti ti-note"></i>{{ i18n.ts._widgets.memo }}</template> | ||||||
| 
 | 
 | ||||||
| 	<div class="otgbylcu"> | 	<div class="otgbylcu"> | ||||||
| 		<textarea v-model="text" :placeholder="i18n.ts.placeholder" @input="onChange"></textarea> | 		<textarea v-model="text" :placeholder="i18n.ts.placeholder" @input="onChange"></textarea> | ||||||
|  |  | ||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue