mirror of
				https://codeberg.org/yeentown/barkey.git
				synced 2025-10-31 13:34:12 +00:00 
			
		
		
		
	replaced ti-shield ti-shield-lock
This commit is contained in:
		
							parent
							
								
									0b0b2e95da
								
							
						
					
					
						commit
						b149a67a4b
					
				
					 10 changed files with 12 additions and 10 deletions
				
			
		|  | @ -12,7 +12,7 @@ SPDX-License-Identifier: AGPL-3.0-only | ||||||
| 			</template> | 			</template> | ||||||
| 			<template v-else> | 			<template v-else> | ||||||
| 				<i v-if="role.isAdministrator" class="ph-crown ph-bold ph-lg" style="color: var(--accent);"></i> | 				<i v-if="role.isAdministrator" class="ph-crown ph-bold ph-lg" style="color: var(--accent);"></i> | ||||||
| 				<i v-else-if="role.isModerator" class="ph-shield ph-bold ph-lg" style="color: var(--accent);"></i> | 				<i v-else-if="role.isModerator" class="ti ti-shield" style="color: var(--accent);"></i> | ||||||
| 				<i v-else class="ph-user ph-bold ph-lg" style="opacity: 0.7;"></i> | 				<i v-else class="ph-user ph-bold ph-lg" style="opacity: 0.7;"></i> | ||||||
| 			</template> | 			</template> | ||||||
| 		</span> | 		</span> | ||||||
|  |  | ||||||
|  | @ -77,7 +77,7 @@ SPDX-License-Identifier: AGPL-3.0-only | ||||||
| 								{{ i18n.ts.termsOfService }} | 								{{ i18n.ts.termsOfService }} | ||||||
| 							</FormLink> | 							</FormLink> | ||||||
| 							<FormLink v-if="instance.privacyPolicyUrl" :to="instance.privacyPolicyUrl" external> | 							<FormLink v-if="instance.privacyPolicyUrl" :to="instance.privacyPolicyUrl" external> | ||||||
| 								<template #icon><i class="ph-shield ph-bold ph-lg"></i></template> | 								<template #icon><i class="ti ti-shield-lock"></i></template> | ||||||
| 								{{ i18n.ts.privacyPolicy }} | 								{{ i18n.ts.privacyPolicy }} | ||||||
| 							</FormLink> | 							</FormLink> | ||||||
| 							<FormLink v-if="instance.feedbackUrl" :to="instance.feedbackUrl" external> | 							<FormLink v-if="instance.feedbackUrl" :to="instance.feedbackUrl" external> | ||||||
|  |  | ||||||
|  | @ -190,7 +190,7 @@ const menuDef = computed(() => [{ | ||||||
| 		to: '/admin/branding', | 		to: '/admin/branding', | ||||||
| 		active: currentPage.value?.route.name === 'branding', | 		active: currentPage.value?.route.name === 'branding', | ||||||
| 	}, { | 	}, { | ||||||
| 		icon: 'ph-shield ph-bold ph-lg', | 		icon: 'ti ti-shield', | ||||||
| 		text: i18n.ts.moderation, | 		text: i18n.ts.moderation, | ||||||
| 		to: '/admin/moderation', | 		to: '/admin/moderation', | ||||||
| 		active: currentPage.value?.route.name === 'moderation', | 		active: currentPage.value?.route.name === 'moderation', | ||||||
|  |  | ||||||
|  | @ -144,7 +144,7 @@ const headerTabs = computed(() => []); | ||||||
| 
 | 
 | ||||||
| definePageMetadata(() => ({ | definePageMetadata(() => ({ | ||||||
| 	title: i18n.ts.moderation, | 	title: i18n.ts.moderation, | ||||||
| 	icon: 'ph-shield ph-bold ph-lg', | 	icon: 'ti ti-shield', | ||||||
| })); | })); | ||||||
| </script> | </script> | ||||||
| 
 | 
 | ||||||
|  |  | ||||||
|  | @ -31,7 +31,7 @@ SPDX-License-Identifier: AGPL-3.0-only | ||||||
| 	</MkInput> | 	</MkInput> | ||||||
| 
 | 
 | ||||||
| 	<MkSelect v-model="rolePermission" :readonly="readonly"> | 	<MkSelect v-model="rolePermission" :readonly="readonly"> | ||||||
| 		<template #label><i class="ph-shield ph-bold ph-lg-lock"></i> {{ i18n.ts._role.permission }}</template> | 		<template #label><i class="ti ti-shield-lock"></i> {{ i18n.ts._role.permission }}</template> | ||||||
| 		<template #caption><div v-html="i18n.ts._role.descriptionOfPermission.replaceAll('\n', '<br>')"></div></template> | 		<template #caption><div v-html="i18n.ts._role.descriptionOfPermission.replaceAll('\n', '<br>')"></div></template> | ||||||
| 		<option value="normal">{{ i18n.ts.normalUser }}</option> | 		<option value="normal">{{ i18n.ts.normalUser }}</option> | ||||||
| 		<option value="moderator">{{ i18n.ts.moderator }}</option> | 		<option value="moderator">{{ i18n.ts.moderator }}</option> | ||||||
|  |  | ||||||
|  | @ -10,7 +10,7 @@ SPDX-License-Identifier: AGPL-3.0-only | ||||||
| 		<FormSuspense :p="init"> | 		<FormSuspense :p="init"> | ||||||
| 			<div class="_gaps_m"> | 			<div class="_gaps_m"> | ||||||
| 				<MkFolder> | 				<MkFolder> | ||||||
| 					<template #icon><i class="ph-shield ph-bold ph-lg"></i></template> | 					<template #icon><i class="ti ti-shield"></i></template> | ||||||
| 					<template #label>{{ i18n.ts.botProtection }}</template> | 					<template #label>{{ i18n.ts.botProtection }}</template> | ||||||
| 					<template v-if="enableHcaptcha" #suffix>hCaptcha</template> | 					<template v-if="enableHcaptcha" #suffix>hCaptcha</template> | ||||||
| 					<template v-else-if="enableMcaptcha" #suffix>mCaptcha</template> | 					<template v-else-if="enableMcaptcha" #suffix>mCaptcha</template> | ||||||
|  |  | ||||||
|  | @ -16,7 +16,7 @@ SPDX-License-Identifier: AGPL-3.0-only | ||||||
| 		</MkInfo> | 		</MkInfo> | ||||||
| 
 | 
 | ||||||
| 		<MkFolder :defaultOpen="true"> | 		<MkFolder :defaultOpen="true"> | ||||||
| 			<template #icon><i class="ph-shield ph-bold ph-lg-lock"></i></template> | 			<template #icon><i class="ti ti-shield-lock"></i></template> | ||||||
| 			<template #label>{{ i18n.ts.totp }}</template> | 			<template #label>{{ i18n.ts.totp }}</template> | ||||||
| 			<template #caption>{{ i18n.ts.totpDescription }}</template> | 			<template #caption>{{ i18n.ts.totpDescription }}</template> | ||||||
| 			<template #suffix><i v-if="$i.twoFactorEnabled" class="ti ti-check" style="color: var(--success)"></i></template> | 			<template #suffix><i v-if="$i.twoFactorEnabled" class="ti ti-check" style="color: var(--success)"></i></template> | ||||||
|  |  | ||||||
|  | @ -22,7 +22,7 @@ SPDX-License-Identifier: AGPL-3.0-only | ||||||
| 							<MkUserName class="name" :user="user" :nowrap="true"/> | 							<MkUserName class="name" :user="user" :nowrap="true"/> | ||||||
| 							<div class="bottom"> | 							<div class="bottom"> | ||||||
| 								<span class="username"><MkAcct :user="user" :detail="true"/></span> | 								<span class="username"><MkAcct :user="user" :detail="true"/></span> | ||||||
| 								<span v-if="user.isAdmin" :title="i18n.ts.isAdmin" style="color: var(--badge);"><i class="ph-shield ph-bold ph-lg"></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.isLocked" :title="i18n.ts.isLocked"><i class="ph-lock ph-bold ph-lg"></i></span> | 								<span v-if="user.isLocked" :title="i18n.ts.isLocked"><i class="ph-lock ph-bold ph-lg"></i></span> | ||||||
| 								<span v-if="user.isBot" :title="i18n.ts.isBot"><i class="ph-robot ph-bold ph-lg"></i></span> | 								<span v-if="user.isBot" :title="i18n.ts.isBot"><i class="ph-robot ph-bold ph-lg"></i></span> | ||||||
| 								<button v-if="$i && !isEditingMemo && !memoDraft" class="_button add-note-button" @click="showMemoTextarea"> | 								<button v-if="$i && !isEditingMemo && !memoDraft" class="_button add-note-button" @click="showMemoTextarea"> | ||||||
|  | @ -41,7 +41,7 @@ SPDX-License-Identifier: AGPL-3.0-only | ||||||
| 						<MkUserName :user="user" :nowrap="false" class="name"/> | 						<MkUserName :user="user" :nowrap="false" class="name"/> | ||||||
| 						<div class="bottom"> | 						<div class="bottom"> | ||||||
| 							<span class="username"><MkAcct :user="user" :detail="true"/></span> | 							<span class="username"><MkAcct :user="user" :detail="true"/></span> | ||||||
| 							<span v-if="user.isAdmin" :title="i18n.ts.isAdmin" style="color: var(--badge);"><i class="ph-shield ph-bold ph-lg"></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.isLocked" :title="i18n.ts.isLocked"><i class="ph-lock ph-bold ph-lg"></i></span> | 							<span v-if="user.isLocked" :title="i18n.ts.isLocked"><i class="ph-lock ph-bold ph-lg"></i></span> | ||||||
| 							<span v-if="user.isBot" :title="i18n.ts.isBot"><i class="ph-robot ph-bold ph-lg"></i></span> | 							<span v-if="user.isBot" :title="i18n.ts.isBot"><i class="ph-robot ph-bold ph-lg"></i></span> | ||||||
| 						</div> | 						</div> | ||||||
|  |  | ||||||
|  | @ -98,7 +98,7 @@ export function openInstanceMenu(ev: MouseEvent) { | ||||||
| 		}, | 		}, | ||||||
| 	} : undefined, (instance.privacyPolicyUrl) ? { | 	} : undefined, (instance.privacyPolicyUrl) ? { | ||||||
| 		text: i18n.ts.privacyPolicy, | 		text: i18n.ts.privacyPolicy, | ||||||
| 		icon: 'ph-shield ph-bold ph-lg', | 		icon: 'ti ti-shield-lock', | ||||||
| 		action: () => { | 		action: () => { | ||||||
| 			window.open(instance.privacyPolicyUrl, '_blank', 'noopener'); | 			window.open(instance.privacyPolicyUrl, '_blank', 'noopener'); | ||||||
| 		}, | 		}, | ||||||
|  |  | ||||||
|  | @ -87,6 +87,8 @@ export function getConfig(): UserConfig { | ||||||
| 					'ti ti-dots': 'ph-dots-three ph-bold ph-lg', | 					'ti ti-dots': 'ph-dots-three ph-bold ph-lg', | ||||||
| 					'ti ti-check': 'ph-check ph-bold ph-lg', | 					'ti ti-check': 'ph-check ph-bold ph-lg', | ||||||
| 					'ti ti-device-floppy': 'ph-floppy-disk ph-bold ph-lg', | 					'ti ti-device-floppy': 'ph-floppy-disk ph-bold ph-lg', | ||||||
|  | 					'ti ti-shield': 'ph-shield ph-bold ph-lg', | ||||||
|  | 					'ti ti-shield-lock': 'ph-shield ph-bold ph-lg', | ||||||
| 				}, | 				}, | ||||||
| 			}), | 			}), | ||||||
| 			...process.env.NODE_ENV === 'production' | 			...process.env.NODE_ENV === 'production' | ||||||
|  |  | ||||||
		Loading…
	
	Add table
		
		Reference in a new issue