aboutsummaryrefslogtreecommitdiffhomepage
path: root/static/form.css
diff options
context:
space:
mode:
authorwinter2025-03-30 19:00:19 +0100
committerwinter2025-03-30 19:00:19 +0100
commitcd10f94269d7dcdd93df9fcda142a1e5a4441ae9 (patch)
tree75a00ef94c94259d3e6308d67e491b3800b47d89 /static/form.css
parentc26a1dca22fcced7b9cd37ace7a20ae71491fd66 (diff)
implement basic interaction controls
Diffstat (limited to 'static/form.css')
-rw-r--r--static/form.css34
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 {