Commit d071f28cfa9a49f3aa6355b17e9d9fa7224ff49f

Parents: c1a1d23111b4918798f2605c33130f2ab71bbe7a

From: John Keeping <john@keeping.me.uk>
Date: Sun Feb 13 15:35:29 2022 +0700

css: reset font size for blame oid
In Firefox, the hashes in the blame UI are out of step with the line
number and content leading to ever increasing vertical misalignment.

This is caused by the .oid class setting font-size to 90%, so override
this back to 100% for the blame case, bringing the height of lines in
all three columns of the table back into step.

Signed-off-by: John Keeping <john@keeping.me.uk>
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>

Stats

cgit.css +4/-0

Changeset

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
diff --git a/cgit.css b/cgit.css
index dfa144d05dd5757b0a4b64225a9e4c27d8ac1223..1b848cf712c9e93c3c29e299008786d6edae87d4 100644
--- a/cgit.css
+++ b/cgit.css
@@ -363,6 +363,10 @@ 	position: absolute;
 	top: 0;
 }
 
+div#cgit table.blame .oid {
+	font-size: 100%;
+}
+
 div#cgit table.bin-blob {
 	margin-top: 0.5em;
 	border: solid 1px black;