Skip to content

Commit

Permalink
gitweb.css: Use monospace fonts for commits and tree-diff.
Browse files Browse the repository at this point in the history
Use monospace fonts for the commit header, commit message,
and tree-diff.  This helps viewing commit logs with ASCII art.

Signed-off-by: Luben Tuikov <ltuikov@yahoo.com>
Signed-off-by: Junio C Hamano <junkio@cox.net>
  • Loading branch information
Luben Tuikov authored and Junio C Hamano committed Jul 14, 2006
1 parent 3dffd2c commit 4b7ce6e
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion gitweb/gitweb.css
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ div.page_footer_text {

div.page_body {
padding: 8px;
font-family: monospace;
}

div.title, a.title {
Expand All @@ -79,6 +80,7 @@ div.title_text {
padding: 6px 0px;
border: solid #d9d8d1;
border-width: 0px 0px 1px;
font-family: monospace;
}

div.log_body {
Expand Down Expand Up @@ -142,8 +144,13 @@ table {
padding: 8px 4px;
}

table.project_list, table.diff_tree {
table.project_list {
border-spacing: 0;
}

table.diff_tree {
border-spacing: 0;
font-family: monospace;
}

table.blame {
Expand Down

0 comments on commit 4b7ce6e

Please sign in to comment.