thunderbird-patch-review
Simple email patch review tool for Thunderbird
git clone git://mccd.space/thunderbird-patch-reviewcommit 661802884b46373d88e7e52ee3806a87248a5813
parent 2e04f24a83c7b232aabf9fdd13df28711357d6b2
Author: Pi Agent <agent@pi.local>
Date: Sat, 18 Jul 2026 13:08:24 +0200
review: align Comment on patch button below the commit message
Drop the absolute top-right positioning of the patch-level comment button
and render it as a left-aligned block beneath the commit message body,
which is where it now belongs given the From/Subject header sits at the top.
Diffstat:
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/extension/review/review.css b/extension/review/review.css
@@ -213,7 +213,10 @@ button.primary:hover { color: #fff; opacity: 0.9; }
font-family: ui-monospace, monospace;
}
-.commit-message .btn-general { position: absolute; top: 0.5rem; right: 0.5rem; }
+.commit-message .btn-general {
+ display: block;
+ margin: 0.6rem 0 0;
+}
.commit-message .patch-headers {
margin: 0 0 0.5rem;