diff options
author | lonkaars <l.leblansch@gmail.com> | 2021-03-11 18:21:10 +0100 |
---|---|---|
committer | lonkaars <l.leblansch@gmail.com> | 2021-03-11 18:21:10 +0100 |
commit | b34662346733ded378b31d8b1ba1e8b2953ec49a (patch) | |
tree | 94f39f81b5d86676beede5d5e0f48427aa3e746f /styles | |
parent | 21d7703c679c85929abea1ac01ef22a83ebf4404 (diff) |
can edit status now :tada:
Diffstat (limited to 'styles')
-rw-r--r-- | styles/global.css | 11 |
1 files changed, 11 insertions, 0 deletions
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; +} + |