Show post authors and action buttons

This commit is contained in:
Micha
2026-01-11 01:54:45 +01:00
parent c8d2bd508e
commit bbbf8eb6c1
5 changed files with 62 additions and 7 deletions

View File

@@ -252,6 +252,38 @@ a {
margin-bottom: 0.75rem;
}
.bb-post-header-meta {
display: flex;
align-items: center;
gap: 0.6rem;
}
.bb-post-actions {
display: inline-flex;
align-items: center;
gap: 0.35rem;
}
.bb-post-action {
width: 44px;
height: 44px;
border-radius: 6px;
border: 1px solid #2a2f3a;
background: #20252f;
color: #c7cdd7;
display: inline-flex;
align-items: center;
justify-content: center;
font-size: 1.3rem;
transition: border-color 0.15s ease, color 0.15s ease;
}
.bb-post-action:hover {
color: var(--bb-accent, #f29b3f);
border-color: var(--bb-accent, #f29b3f);
}
.bb-post-body {
white-space: pre-wrap;
color: var(--bb-ink);