From 8bef13a4927c19fa524ef917bcb7429e636732a7 Mon Sep 17 00:00:00 2001 From: GithubAnon0000 <160563432+GithubAnon0000@users.noreply.github.com> Date: Sun, 6 Jul 2025 19:36:58 +0200 Subject: [PATCH] Use ankis border for -select-container and .chevron --- ts/lib/components/Select.svelte | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/ts/lib/components/Select.svelte b/ts/lib/components/Select.svelte index 24b7bc12e..ace0527e1 100644 --- a/ts/lib/components/Select.svelte +++ b/ts/lib/components/Select.svelte @@ -262,6 +262,7 @@ License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html display: flex; flex-flow: row; justify-content: space-between; + border-color: var(--border); .inner { flex-grow: 1; @@ -287,13 +288,13 @@ License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html .chevron { height: 100%; align-self: flex-end; - border-left: 1px solid var(--border-subtle); + border-left: 1px solid var(--border); } :global([dir="rtl"]) { .chevron { border-left: none; - border-right: 1px solid var(--border-subtle); + border-right: 1px solid var(--border); } }