Changeset 55bc7f9 in Klonkt for src/assets/css/style.css


Ignore:
Timestamp:
06/24/2026 12:09:08 PM (3 months ago)
Author:
Robin Genis <roboburr@…>
Branches:
main
Children:
3a2c9d3
Parents:
47a0d29
Message:

feat(activitypub): reply back to the fediverse (Phase 4 outbound)

Site owner can reply to an inbound fediverse interaction from the post page. The
reply is sent as a signed Create(Note) with inReplyTo + @Mention to the remote
actor's inbox + our followers, stored in ap_outbox, shown in the thread, and
resolvable at /ap/notes/<id>.

Co-Authored-By: Claude <noreply@…>

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/assets/css/style.css

    r47a0d29 r55bc7f9  
    44344434.post-fediverse .fedi-text p:first-child { margin-top: 0; }
    44354435.post-fediverse .fedi-text a { color: var(--accent, #06c); }
     4436.post-fediverse .fedi-ours {
     4437  margin: .6rem 0 0; padding: .55rem .75rem; border-radius: 12px;
     4438  border-left: 3px solid var(--accent, #888);
     4439  background: color-mix(in srgb, var(--accent, #888) 8%, transparent);
     4440  font-size: .95rem;
     4441}
     4442.post-fediverse .fedi-ours-label { font-weight: 600; color: var(--accent, #555); margin-right: .25rem; }
     4443.post-fediverse .fedi-ours-body p { margin: 0; display: inline; }
     4444.post-fediverse .fedi-replybox { margin-top: .55rem; }
     4445.post-fediverse .fedi-replybox summary { cursor: pointer; font-size: .85rem; color: var(--ink-soft, #888); width: fit-content; }
     4446.post-fediverse .fedi-replybox form { display: flex; flex-direction: column; gap: .5rem; margin-top: .5rem; }
     4447.post-fediverse .fedi-replybox textarea {
     4448  width: 100%; box-sizing: border-box; resize: vertical; padding: .55rem .7rem;
     4449  border-radius: 10px; border: 1px solid color-mix(in srgb, var(--ink, #000) 18%, transparent);
     4450  background: var(--paper, #fff); color: var(--ink, #000); font: inherit;
     4451}
     4452.post-fediverse .fedi-replybox button { align-self: flex-end; }
Note: See TracChangeset for help on using the changeset viewer.