From b34662346733ded378b31d8b1ba1e8b2953ec49a Mon Sep 17 00:00:00 2001 From: lonkaars Date: Thu, 11 Mar 2021 18:21:10 +0100 Subject: can edit status now :tada: --- styles/global.css | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'styles') diff --git a/styles/global.css b/styles/global.css index 03f329e..34c1b0d 100644 --- a/styles/global.css +++ b/styles/global.css @@ -79,3 +79,14 @@ input::placeholder { opacity: .75; } input.dark::placeholder { color: var(--text); } input.light::placeholder { color: var(--text-alt); } +/* editable field status */ +*[contenteditable] { border-color: var(--background-alt); } +*[contenteditable="true"]:focus { border-color: var(--disk-a); } +*[contenteditable="true"] { + background-color: var(--page-background); + padding: 6px; + border-radius: 6px; + border-style: solid; + border-width: 2px; +} + -- cgit v1.2.3