thunderbird-patch-review

Simple email patch review tool for Thunderbird

git clone git://mccd.space/thunderbird-patch-review
commit 0d97836750f6d9f92ecf9f97a266cfe943dd226d
parent eb8ef8acdf954d9b169bb8682c7b7f2953883e0f
Author: Marc <marc@coquand.email>
Date:   Sun, 19 Jul 2026 11:26:28 +0200

fix review css

Diffstat:
Mextension/review/review.css | 6++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/extension/review/review.css b/extension/review/review.css
@@ -109,7 +109,9 @@ body {
 }
 
 /* A joined cluster: the repo chip and the Apply split read as one control.
-   Children sit flush; inner borders merge and inner corners flatten. */
+   The seam is drawn by Apply's left border alone; the repo chip's right
+   border goes transparent (this outranks the .error red by declaration
+   order), so an error chip doesn't butt a red edge against Apply's. */
 .cluster {
   display: flex;
   align-items: stretch;
@@ -117,6 +119,7 @@ body {
 .cluster > #repo-path {
   border-top-right-radius: 0;
   border-bottom-right-radius: 0;
+  border-right-color: transparent;
 }
 .cluster > .split {
   border-top-left-radius: 0;
@@ -125,7 +128,6 @@ body {
 .cluster > .split > button:first-child {
   border-top-left-radius: 0;
   border-bottom-left-radius: 0;
-  border-left: 0;
 }
 
 button {