diff options
| author | winter | 2025-03-30 19:00:19 +0100 |
|---|---|---|
| committer | winter | 2025-03-30 19:00:19 +0100 |
| commit | cd10f94269d7dcdd93df9fcda142a1e5a4441ae9 (patch) | |
| tree | 75a00ef94c94259d3e6308d67e491b3800b47d89 /static/form.css | |
| parent | c26a1dca22fcced7b9cd37ace7a20ae71491fd66 (diff) | |
implement basic interaction controls
Diffstat (limited to 'static/form.css')
| -rw-r--r-- | static/form.css | 34 |
1 files changed, 33 insertions, 1 deletions
diff --git a/static/form.css b/static/form.css index f807e4f..ef8956a 100644 --- a/static/form.css +++ b/static/form.css @@ -104,7 +104,6 @@ form:not(.nopanel) { } .summaryAndContent { - margin-bottom: var(--spacing-single); input:has(+ textarea) { margin-bottom: 0; border-bottom-left-radius: 0; @@ -117,6 +116,39 @@ form:not(.nopanel) { } } } + + .noteScopeButtons, + .noteInteractorButtons { + display: grid; + gap: var(--spacing-single); + grid-auto-flow: column; + width: max-content; + justify-self: center; + + input { + display: none; + } + label { + color: var(--clr-action-default); + cursor: pointer; + } + input:checked + label { + color: var(--clr-foreground); + } + } + } + + fieldset { + border: none; + margin: 0; + margin-bottom: var(--spacing-single); + padding: 0; + + legend { + font-size: var(--font-small-size); + color: var(--clr-lesser-foreground); + margin-bottom: var(--spacing-single); + } } &#writePageForm { |
