This commit is contained in:
xds
2026-02-20 10:29:11 +03:00
parent 489fd14903
commit b0ce251914
8 changed files with 97 additions and 38 deletions

View File

@@ -865,27 +865,27 @@ const confirmAddToAlbum = async () => {
<div class="flex items-center gap-1.5">
<Dropdown v-model="filterCharacter" :options="characters" optionLabel="name"
placeholder="All Characters" showClear
class="!w-40 !bg-slate-800/60 !border-white/10 !text-white !rounded-lg !text-[10px]" :pt="{
class="!w-40 !bg-slate-800/60 !border-white/10 !text-white !rounded-lg !text-[16px]" :pt="{
root: { class: '!bg-slate-800/60 !h-7' },
input: { class: '!text-white !text-[10px] !py-0.5 !px-2' },
input: { class: '!text-white !text-[16px] !py-0.5 !px-2' },
trigger: { class: '!text-slate-400 !w-5' },
panel: { class: '!bg-slate-800 !border-white/10' },
item: { class: '!text-slate-300 hover:!bg-white/10 hover:!text-white !text-[10px] !py-1' },
item: { class: '!text-slate-300 hover:!bg-white/10 hover:!text-white !text-[16px] !py-1' },
clearIcon: { class: '!text-slate-400 hover:!text-white !text-[8px]' }
}">
<template #value="slotProps">
<div v-if="slotProps.value" class="flex items-center gap-1">
<img v-if="slotProps.value.avatar_image" :src="API_URL + slotProps.value.avatar_image"
class="w-4 h-4 rounded-full object-cover" />
<span class="text-[10px]">{{ slotProps.value.name }}</span>
<span class="text-[16px]">{{ slotProps.value.name }}</span>
</div>
<span v-else class="text-[10px] text-slate-400">{{ slotProps.placeholder }}</span>
<span v-else class="text-[16px] text-slate-400">{{ slotProps.placeholder }}</span>
</template>
<template #option="slotProps">
<div class="flex items-center gap-1.5">
<img v-if="slotProps.option.avatar_image" :src="API_URL + slotProps.option.avatar_image"
class="w-5 h-5 rounded-full object-cover" />
<span class="text-[10px]">{{ slotProps.option.name }}</span>
<span class="text-[16px]">{{ slotProps.option.name }}</span>
</div>
</template>
</Dropdown>
@@ -1365,7 +1365,7 @@ const confirmAddToAlbum = async () => {
</div>
<div v-if="sendToTelegram" class="animate-in fade-in slide-in-from-top-1">
<InputText v-model="telegramId" placeholder="Telegram ID"
class="w-full !text-xs !bg-slate-900 !border-white/10 !text-white !py-1.5" />
class="w-full !text-[16px] !bg-slate-900 !border-white/10 !text-white !py-1.5" />
</div>
</div>