From ef8c46045e09f689b650004d5fead6c31bd144c9 Mon Sep 17 00:00:00 2001 From: Henrik Giesel Date: Thu, 24 Jun 2021 17:34:57 +0200 Subject: [PATCH] Make caret cursor more discoverable --- ts/editor/TagInput.svelte | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/ts/editor/TagInput.svelte b/ts/editor/TagInput.svelte index 9d901d48a..d8a263eb4 100644 --- a/ts/editor/TagInput.svelte +++ b/ts/editor/TagInput.svelte @@ -90,6 +90,12 @@ License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html display: inline-grid; height: 100%; + cursor: text; + + &:focus-within { + cursor: default; + } + &::after, input { color: var(--text-fg);