Search colors

This commit is contained in:
2025-10-12 01:05:50 +02:00
parent efd5a9ab34
commit 25b7ef5495

View File

@@ -1,9 +1,9 @@
<template> <template>
<UPageBody> <UPageBody>
<UPageSection :ui="{ container: 'gap-4 sm:gap-4 lg:gap-4 ' }"> <UPageSection :ui="{ container: 'gap-4 sm:gap-4 lg:gap-4 ' }">
<UButton variant="ghost" to="/" icon="i-lucide-arrow-left" class="w-min">Back</UButton> <UButton variant="soft" to="/" icon="i-lucide-arrow-left" class="w-min">Back</UButton>
<div class="flex flex-row w-full h-full justify-between gap-4"> <div class="flex flex-row w-full h-full justify-between gap-4">
<UStepper v-model="activeStep" orientation="vertical" :items="items" class="h-full" disabled /> <UStepper v-model="activeStep" orientation="vertical" :items="items" class="h-full" disabled color="secondary" />
<UCard class="grow"> <UCard class="grow">
<div class="flex flex-col justify-between gap-2"> <div class="flex flex-col justify-between gap-2">
<UInput v-model="query" class="w-full" :disabled="busy" /> <UInput v-model="query" class="w-full" :disabled="busy" />
@@ -11,7 +11,7 @@
<UButton <UButton
v-for="c in connectors" v-for="c in connectors"
:key="c.key" :key="c.key"
:color="connector?.key == c.key ? 'success' : 'neutral'" :color="connector?.key == c.key ? 'secondary' : 'neutral'"
:disabled="busy" :disabled="busy"
@click="connectorClick(c)"> @click="connectorClick(c)">
<template #leading> <template #leading>
@@ -19,7 +19,7 @@
</template> </template>
{{ c.name }} {{ c.name }}
</UButton> </UButton>
<UButton color="secondary" :disabled="busy" :loading="busy" @click="performSearch" <UButton color="primary" :disabled="busy" :loading="busy" @click="performSearch"
>Search</UButton >Search</UButton
> >
</div> </div>