replaced ti-hourglass-empty and ti-search

This commit is contained in:
dakkar 2024-06-21 18:03:27 +01:00
parent a25f13cb67
commit 48d29fa1ae
18 changed files with 23 additions and 21 deletions

View file

@ -11,7 +11,7 @@ SPDX-License-Identifier: AGPL-3.0-only
<div class="_gaps">
<div>
<MkInput v-model="host" :debounce="true" class="">
<template #prefix><i class="ph-magnifying-glass ph-bold ph-lg"></i></template>
<template #prefix><i class="ti ti-search"></i></template>
<template #label>{{ i18n.ts.host }}</template>
</MkInput>
<FormSplit style="margin-top: var(--margin);">

View file

@ -75,7 +75,7 @@ function clear() {
const headerActions = computed(() => [{
text: i18n.ts.lookup,
icon: 'ph-magnifying-glass ph-bold ph-lg',
icon: 'ti ti-search',
handler: lookupFile,
}, {
text: i18n.ts.clearCachedFiles,

View file

@ -95,7 +95,7 @@ const menuDef = computed(() => [{
title: i18n.ts.quickAction,
items: [{
type: 'button',
icon: 'ph-magnifying-glass ph-bold ph-lg',
icon: 'ti ti-search',
text: i18n.ts.lookup,
action: adminLookup,
}, ...(instance.disableRegistration ? [{

View file

@ -76,7 +76,7 @@ SPDX-License-Identifier: AGPL-3.0-only
<template #label><i class="ph-scroll ph-bold ph-lg"></i> {{ i18n.ts._role.policies }}</template>
<div class="_gaps_s">
<MkInput v-model="q" type="search">
<template #prefix><i class="ph-magnifying-glass ph-bold ph-lg"></i></template>
<template #prefix><i class="ti ti-search"></i></template>
</MkInput>
<MkFolder v-if="matchQuery([i18n.ts._role._options.rateLimitFactor, 'rateLimitFactor'])">

View file

@ -13,7 +13,7 @@ SPDX-License-Identifier: AGPL-3.0-only
<template #label>{{ i18n.ts._role.baseRole }}</template>
<div class="_gaps_s">
<MkInput v-model="baseRoleQ" type="search">
<template #prefix><i class="ph-magnifying-glass ph-bold ph-lg"></i></template>
<template #prefix><i class="ti ti-search"></i></template>
</MkInput>
<MkFolder v-if="matchQuery([i18n.ts._role._options.rateLimitFactor, 'rateLimitFactor'])">

View file

@ -121,7 +121,7 @@ function show(user) {
}
const headerActions = computed(() => [{
icon: 'ph-magnifying-glass ph-bold ph-lg',
icon: 'ti ti-search',
text: i18n.ts.search,
handler: searchUser,
}, {
@ -131,7 +131,7 @@ const headerActions = computed(() => [{
handler: addUser,
}, {
asFullButton: true,
icon: 'ph-magnifying-glass ph-bold ph-lg',
icon: 'ti ti-search',
text: i18n.ts.lookup,
handler: lookupUser,
}]);