]> Lady’s Gitweb - Gitweb/commitdiff
gitweb: blame: Minimize vertical table row padding
authorLuben Tuikov <redacted>
Thu, 5 Oct 2006 20:30:31 +0000 (13:30 -0700)
committerLady <redacted>
Mon, 6 Apr 2026 04:07:10 +0000 (00:07 -0400)
Minimize vertical table row padding for blame only.  I
discovered this while having the browser's blame output
right next to my editor's window, only to notice how much
vertically stretched the blame output was.

Blame most likely shows source code and is in this way
more "spartan" than the rest of the tables gitweb shows.

This patch makes the blame table more vertically compact,
thus being closer to what you'd see in your editor's window,
as well as reusing more window estate to show more
information (which in turn minimizes scrolling).

Signed-off-by: Luben Tuikov <redacted>
Signed-off-by: Junio C Hamano <redacted>
gitweb.css

index 27f66a1c51d69db62600c09c958382a0acd693ea8ebf08ac9f4b6901d931763a..709ab31209180f9457ecedef0e6877d0d88afb6423e15aa19f46ba5ff15d64e3 100644 (file)
@@ -173,6 +173,12 @@ table.blame {
        border-collapse: collapse;
 }
 
+table.blame td {
+       padding: 0px 5px;
+       font-size: 12px;
+       vertical-align: top;
+}
+
 th {
        padding: 2px 5px;
        font-size: 12px;
This page took 0.236637 seconds and 4 git commands to generate.