From fb2dcf1484e4b4ff770d162514398e6670cb70a5 Mon Sep 17 00:00:00 2001 From: Matthias Metelka <62722460+kleinerpirat@users.noreply.github.com> Date: Thu, 8 Dec 2022 13:32:35 +0100 Subject: [PATCH] Make SpinBox chevrons more subtle (#2243) * Make SpinBox chevrons more subtle and keep showing them when input is focused. * Show chevrons only on hover * Revert "Show chevrons only on hover" This reverts commit 20e5ec169116fe3638c53c6ec414151d20c0de6b. --- ftl/core/actions.ftl | 2 ++ ts/components/SpinBox.svelte | 41 +++++++++++++++++++++--------------- 2 files changed, 26 insertions(+), 17 deletions(-) diff --git a/ftl/core/actions.ftl b/ftl/core/actions.ftl index 6252c2955..0a1505a17 100644 --- a/ftl/core/actions.ftl +++ b/ftl/core/actions.ftl @@ -8,10 +8,12 @@ actions-copy = Copy actions-create-copy = Create Copy actions-custom-study = Custom Study actions-decks = Decks +actions-decrement-value = Decrement value actions-delete = Delete actions-export = Export actions-filter = Filter actions-help = Help +actions-increment-value = Increment value actions-import = Import actions-manage = Manage... actions-name = Name: diff --git a/ts/components/SpinBox.svelte b/ts/components/SpinBox.svelte index 722d93eca..f7a2b389a 100644 --- a/ts/components/SpinBox.svelte +++ b/ts/components/SpinBox.svelte @@ -3,6 +3,7 @@ Copyright: Ankitects Pty Ltd and contributors License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html -->