[grade=B] v1.9.4: bird emblem bottom-left on beeps and replies (opposite wordmark), Sami's transparent icon, old top-right badge removed

This commit is contained in:
Krystie
2026-09-07 17:57:13 -07:00
parent 4b9a695f26
commit 97eb31bd9d
2 changed files with 7 additions and 10 deletions
+2 -10
View File
@@ -557,15 +557,6 @@
.beep-embed .beep-time:hover { text-decoration: underline; } .beep-embed .beep-time:hover { text-decoration: underline; }
.beep-embed .beep-spacer { flex: 1; min-width: 8px; } .beep-embed .beep-spacer { flex: 1; min-width: 8px; }
/* Per-post bird badge (brand corner mark) */
.beep-embed .beep-post-badge {
flex-shrink: 0;
opacity: 0.6;
transition: opacity 0.15s ease;
}
.beep-embed .beep-post:hover .beep-post-badge { opacity: 0.9; }
/* Post text */ /* Post text */
.beep-embed .beep-text { .beep-embed .beep-text {
font-size: 15px; font-size: 15px;
@@ -1017,7 +1008,7 @@
font-variant-numeric: tabular-nums; font-variant-numeric: tabular-nums;
} }
/* ---------- Bottom bar (bird emblem + brand wordmark + delete) ---------- */ /* ---------- Bottom bar (bird emblem + brand wordmark) ---------- */
.beep-embed .beep-bottom-bar { .beep-embed .beep-bottom-bar {
display: flex; display: flex;
align-items: center; align-items: center;
@@ -1049,6 +1040,7 @@
.beep-embed .beep-post:hover .beep-post-wordmark, .beep-embed .beep-post:hover .beep-post-wordmark,
.beep-embed .beep-reply:hover .beep-post-wordmark { opacity: 0.85; } .beep-embed .beep-reply:hover .beep-post-wordmark { opacity: 0.85; }
.beep-embed .beep-reply:hover .beep-post-emblem { opacity: 0.9; }
.beep-embed .beep-delete-link { .beep-embed .beep-delete-link {
background: transparent; background: transparent;
+5
View File
@@ -668,6 +668,11 @@ function beep_render_reply($comment, $all_comments = [], $depth = 0, $post_id =
<?php echo beep_render_reply_form($post_id, $comment->comment_ID); ?> <?php echo beep_render_reply_form($post_id, $comment->comment_ID); ?>
<?php endif; ?> <?php endif; ?>
<div class="beep-bottom-bar">
<img class="beep-post-emblem" src="<?php echo esc_url(BEEP_URL . 'assets/beep-bird-emblem.png?v=' . BEEP_VERSION); ?>" alt="" width="20" height="21" aria-hidden="true">
<?php echo beep_post_wordmark(); ?>
</div>
<?php <?php
// Recursively render children // Recursively render children
$children = beep_render_replies_tree($all_comments, $comment->comment_ID, $depth + 1, $post_id, $can_interact); $children = beep_render_replies_tree($all_comments, $comment->comment_ID, $depth + 1, $post_id, $can_interact);