aboutsummaryrefslogtreecommitdiffhomepage
path: root/static/form.css
diff options
context:
space:
mode:
authorwinter2025-03-15 21:26:02 +0000
committerwinter2025-03-15 21:26:02 +0000
commit8843a8cb197e71b1ca42f1ea56be5f806ad0f5b4 (patch)
tree20ca690e9bd3e4996421eb4d43c0b4fbdaf0ff95 /static/form.css
parentd8e440b1998e5c3e33445f2ec020d261fc7fa714 (diff)
implement note editing
and improve display of edited note timestamps
Diffstat (limited to 'static/form.css')
-rw-r--r--static/form.css15
1 files changed, 14 insertions, 1 deletions
diff --git a/static/form.css b/static/form.css
index 6f474c1..bb8655d 100644
--- a/static/form.css
+++ b/static/form.css
@@ -61,7 +61,8 @@ form:not(.nopanel) {
margin: 0;
}
- &.noteReplyForm {
+ &.noteReplyForm,
+ &.noteEditForm {
background: none;
border: none;
padding: 0;
@@ -76,8 +77,12 @@ form:not(.nopanel) {
box-sizing: border-box;
}
}
+ &.noteEditForm {
+ margin-top: var(--spacing-single);
+ }
&.noteReplyForm,
+ &.noteEditForm,
&#writeNoteForm {
details {
summary {
@@ -178,6 +183,14 @@ form:not(.nopanel) {
font-size: var(--font-normal-size);
}
}
+
+ .actionButtons {
+ display: grid;
+ justify-content: end;
+ align-items: baseline;
+ grid-auto-flow: column;
+ gap: var(--spacing-double);
+ }
}
input[type="checkbox"] {