diff --git a/src/lib/components/AddConnectionModal.svelte b/src/lib/components/AddConnectionModal.svelte index a5a8375853..f1300a0ba5 100644 --- a/src/lib/components/AddConnectionModal.svelte +++ b/src/lib/components/AddConnectionModal.svelte @@ -59,6 +59,11 @@ let loading = false; let showDeleteConfirmDialog = false; + const highContrastInputClass = + 'rounded-lg border border-gray-100/50 bg-gray-50/40 px-2 py-1.5 text-gray-700 outline-hidden transition-colors placeholder:text-gray-300 focus:border-blue-400 dark:border-white/[0.04] dark:bg-white/[0.03] dark:text-gray-300 dark:placeholder:text-gray-700 dark:focus:border-blue-500'; + const highContrastSelectClass = + 'rounded-lg border border-gray-100/50 bg-gray-50/40 px-2 py-1.5 text-gray-700 outline-hidden transition-colors focus:border-blue-400 dark:border-white/[0.04] dark:bg-white/[0.03] dark:text-gray-300 dark:focus:border-blue-500'; + const verifyOllamaHandler = async () => { // remove trailing slash from url url = url.replace(/\/$/, ''); @@ -313,7 +318,7 @@
{ return JSON.stringify(value && Object.keys(value).length ? value : {}, null, 2); }; @@ -404,7 +409,7 @@