diff options
| author | winter | 2025-01-13 20:37:34 +0000 |
|---|---|---|
| committer | winter | 2025-01-13 20:37:34 +0000 |
| commit | f31d2abc237958bd9f33875f20198c4510389556 (patch) | |
| tree | 57c0920666ca052d8850824ad47b326631764aa6 /static/style.css | |
| parent | fb9efd9f4682f528b1832622d192b9b5544584a9 (diff) | |
implement replying to posts
Diffstat (limited to 'static/style.css')
| -rw-r--r-- | static/style.css | 33 |
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; +} |
