aboutsummaryrefslogtreecommitdiffhomepage
path: root/static/note.css
diff options
context:
space:
mode:
authorwinter2025-01-16 18:33:18 +0000
committerwinter2025-01-16 18:33:18 +0000
commit8de5608976dc8a73a400267601acb4c8e127de5a (patch)
treea907dd4c4e55e331979cd9ce14852592af2654a0 /static/note.css
parente3a0248c3b1762abf5138fbd1b8228601006d44d (diff)
note privacy and summary stuff
Diffstat (limited to 'static/note.css')
-rw-r--r--static/note.css16
1 files changed, 15 insertions, 1 deletions
diff --git a/static/note.css b/static/note.css
index fde4c62..cd9166c 100644
--- a/static/note.css
+++ b/static/note.css
@@ -12,6 +12,7 @@
.icon {
font-size: 24px;
+ user-select: none;
}
a {
text-decoration: none;
@@ -50,11 +51,21 @@ article.note {
.selected & {
font-size: 16pt;
}
+
+ summary {
+ border: 1px solid #5e380044;
+ border-radius: 8px;
+ padding: 8px 16px;
+ background: #ffda6144;
+ }
+ details[open] > summary {
+ margin-bottom: 8px;
+ }
}
.infoLine {
display: grid;
- grid-template-columns: max-content 1fr max-content;
+ grid-template-columns: max-content 1fr max-content max-content;
align-items: baseline;
margin-bottom: 4px;
gap: 8px;
@@ -75,6 +86,9 @@ article.note {
text-decoration: underline;
}
}
+ .privacyScope.inlineIcon {
+ align-self: center;
+ }
}
.replyInfo a {