From 872ef63f3067e7e25ed1496b16e5d62e3b417c9f Mon Sep 17 00:00:00 2001 From: GithubAnon0000 <160563432+GithubAnon0000@users.noreply.github.com> Date: Sat, 30 Aug 2025 22:40:39 +0200 Subject: [PATCH] Revert Changes --- ts/lib/components/Select.svelte | 5 ++--- ts/lib/components/Switch.svelte | 1 - ts/lib/components/TitledContainer.svelte | 2 +- ts/lib/sass/_vars.scss | 2 +- 4 files changed, 4 insertions(+), 6 deletions(-) diff --git a/ts/lib/components/Select.svelte b/ts/lib/components/Select.svelte index ace0527e1..24b7bc12e 100644 --- a/ts/lib/components/Select.svelte +++ b/ts/lib/components/Select.svelte @@ -262,7 +262,6 @@ 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; @@ -288,13 +287,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); + border-left: 1px solid var(--border-subtle); } :global([dir="rtl"]) { .chevron { border-left: none; - border-right: 1px solid var(--border); + border-right: 1px solid var(--border-subtle); } } diff --git a/ts/lib/components/Switch.svelte b/ts/lib/components/Switch.svelte index c39a27748..d48f46fb3 100644 --- a/ts/lib/components/Switch.svelte +++ b/ts/lib/components/Switch.svelte @@ -31,7 +31,6 @@ License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html } .form-check-input { - border-color: var(--border); -webkit-appearance: none; appearance: none; height: 1.5em; diff --git a/ts/lib/components/TitledContainer.svelte b/ts/lib/components/TitledContainer.svelte index 110e79d8f..3ea932ba3 100644 --- a/ts/lib/components/TitledContainer.svelte +++ b/ts/lib/components/TitledContainer.svelte @@ -56,7 +56,7 @@ License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html page-break-inside: avoid; } h1 { - border-bottom: 1px solid #c4c4c4; + border-bottom: 1px solid var(--border); padding-bottom: 0.25em; } .help-badge { diff --git a/ts/lib/sass/_vars.scss b/ts/lib/sass/_vars.scss index 434c0f7cb..a8da766ad 100644 --- a/ts/lib/sass/_vars.scss +++ b/ts/lib/sass/_vars.scss @@ -153,7 +153,7 @@ $vars: ( default: ( "Border color with medium contrast against window background", ( - light: palette(lightgray, 9), + light: palette(lightgray, 6), dark: palette(darkgray, 7), ), ),