aboutsummaryrefslogtreecommitdiffhomepage
path: root/static/style.css
diff options
context:
space:
mode:
Diffstat (limited to 'static/style.css')
-rw-r--r--static/style.css33
1 files changed, 32 insertions, 1 deletions
diff --git a/static/style.css b/static/style.css
index 01281d8..f963802 100644
--- a/static/style.css
+++ b/static/style.css
@@ -176,6 +176,15 @@ article.note {
}
}
+ .replyInfo a {
+ font-size: 10pt;
+ color: #555;
+ text-decoration: none;
+ &:hover {
+ text-decoration: underline;
+ }
+ }
+
.buttons {
margin-top: 8px;
padding: 0;
@@ -203,6 +212,9 @@ article.note {
&.reshare.active {
color: #21a821;
}
+ &.reply.active {
+ color: #0761b6;
+ }
}
}
}
@@ -247,7 +259,7 @@ form {
padding: 16px;
display: grid;
grid-auto-flow: row;
- gap: 16px;
+ gap: 8px;
max-width: max-content;
label:has(+ input, + textarea) {
@@ -294,6 +306,21 @@ form {
padding: 16px;
margin: 0;
}
+
+ &.noteReplyForm {
+ background: none;
+ border: none;
+ padding: 0;
+ margin: 0;
+ margin-top: 8px;
+ max-width: 100%;
+ input:not([type="checkbox"]),
+ textarea,
+ button {
+ width: 100%;
+ box-sizing: border-box;
+ }
+ }
}
.fullProfile {
@@ -322,3 +349,7 @@ form {
}
}
}
+
+[hidden] {
+ display: none;
+}