Changeset c16e0a5 in Klonkt for src/assets/css


Ignore:
Timestamp:
06/24/2026 11:44:23 AM (3 months ago)
Author:
Robin Genis <roboburr@…>
Branches:
main
Children:
47a0d29
Parents:
eb852c5
Message:

feat(activitypub): inbound interactions — replies, likes, boosts (Phase 2)

Inbox now stores incoming Create(reply to our note), Like and Announce (boost),
plus Undo(Like/Announce) and Delete(reply). New ap_interactions table; the post
page shows a 'From the fediverse' section (counts + replies with avatar/handle,
sanitized). Actor name/icon resolved best-effort; reply HTML sanitized.

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

File:
1 edited

Legend:

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

    reb852c5 rc16e0a5  
    44004400    }
    44014401}
     4402
     4403/* === Fediverse interactions (inbound AP replies/likes/boosts) === */
     4404.post-fediverse { margin: 2rem 0; }
     4405.post-fediverse .fedi-heading { font-size: 1.15rem; margin: 0 0 .5rem; }
     4406.post-fediverse .fedi-stats { display: flex; gap: 1.1rem; color: var(--ink-soft, #777); font-size: .95rem; margin: 0 0 1rem; }
     4407.post-fediverse .fedi-replies { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 1rem; }
     4408.post-fediverse .fedi-reply { display: flex; gap: .75rem; }
     4409.post-fediverse .fedi-handle { color: var(--ink-soft, #888); font-size: .85rem; }
     4410.post-fediverse .comment-content { margin-top: .15rem; }
Note: See TracChangeset for help on using the changeset viewer.