diff options
| author | winter | 2025-01-26 21:53:26 +0000 |
|---|---|---|
| committer | winter | 2025-01-26 21:53:26 +0000 |
| commit | 6b58bf53e312a67119289b894c5b482d057e5665 (patch) | |
| tree | fef168089a75d73353af1a79456e711c72385ca3 /static/form.css | |
| parent | 7d3f35b1895dd3fe08af0f5fe403ff339acd2456 (diff) | |
make mentions work properly + ui for them
Diffstat (limited to 'static/form.css')
| -rw-r--r-- | static/form.css | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/static/form.css b/static/form.css index 95f13ac..4683929 100644 --- a/static/form.css +++ b/static/form.css @@ -1,4 +1,4 @@ -form { +form:not(.nopanel):not([hidden]) { border: var(--border); background: var(--clr-panel-background); border-radius: var(--border-radius); @@ -9,7 +9,8 @@ form { gap: var(--spacing-single); max-width: max-content; - label:has(+ input, + textarea, + select) { + label:has(+ input, + textarea, + select), + label.standalone { display: block; font-size: var(--font-small-size); color: var(--clr-lesser-foreground); |
