/* POST ITEM (thread view) */ .post-list { display: flex; flex-direction: column; gap: 0; } .post-item { padding: 0.75rem 1rem; border-bottom: 1px solid var(--border); } .post-item:first-child { border-top: 1px solid var(--border); } .post-header { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 0.25rem; } .post-author { font-family: "IBM Plex Mono", monospace; font-weight: bold; font-size: 0.85rem; } .post-timestamp { font-family: "IBM Plex Mono", monospace; font-size: 0.75rem; color: var(--text-muted); } .post-edited { font-family: "IBM Plex Mono", monospace; font-size: 0.7rem; color: var(--text-muted); font-style: italic; margin-left: 0.5rem; } .post-body { font-size: 0.9rem; line-height: 1.5; } .post-body p { margin-bottom: 0.5rem; } .post-body p:last-child { margin-bottom: 0; } .post-body code { font-family: "IBM Plex Mono", monospace; font-size: 0.8rem; background: var(--surface-muted); padding: 0.1rem 0.35rem; } .post-body pre { background: var(--primary-dark); color: var(--primary-light); padding: 0.75rem; overflow-x: auto; margin: 0.5rem 0; font-family: "IBM Plex Mono", monospace; font-size: 0.8rem; line-height: 1.5; } .post-body pre code { background: none; padding: 0; color: inherit; } .post-body blockquote { border-left: 3px solid var(--border); padding-left: 1rem; margin: 0.5rem 0; color: var(--text-muted); } .post-body img { max-width: 100%; height: auto; border-radius: 4px; margin: 0.5rem 0; cursor: pointer; } /* Post action links (edit/delete) */ .post-actions { margin-left: 0.75rem; } .post-action-link { font-family: "IBM Plex Mono", monospace; font-size: 0.7rem; color: var(--text-muted); background: none; border: none; padding: 0; cursor: pointer; text-decoration: none; margin-left: 0.5rem; } .post-action-link:hover { color: var(--detail); text-decoration: underline; } .post-action-delete:hover { color: var(--danger); } /* Deleted posts */ .post-deleted .post-body { color: var(--text-muted); font-style: italic; } /* OP indicator */ .post-item.op { background: var(--light-background); } /* DRAFT INDICATOR */ .draft-indicator { font-family: "IBM Plex Mono", monospace; font-size: 0.75rem; color: var(--text-muted); margin-bottom: 0.25rem; } .draft-discard { cursor: pointer; color: var(--text-muted); } .draft-discard:hover { color: var(--danger); } /* REPLY FORM */ .reply-section { padding: 1rem; margin-top: 0.5rem; } .reply-section h3 { margin-bottom: 0.75rem; } /* PAGE HEADER (title + actions row) */ .page-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.5rem; } .page-header h1 { text-align: left; font-size: 1.5rem; margin: 0; } .page-header h2 { font-size: 1.2rem; margin: 0; }