]> gitweb.ps.run Git - ps-cgit/blobdiff - ui-log.c
cgit v0.2
[ps-cgit] / ui-log.c
index c353b2ae6e82587bb535f836cea850a6c00306c8..24d571d128d18d46252eb795c7923fdfebdf34d7 100644 (file)
--- a/ui-log.c
+++ b/ui-log.c
@@ -23,7 +23,7 @@ void print_commit(struct commit *commit)
        char *qry = fmt("id=%s", sha1_to_hex(commit->object.sha1));
        char *url = cgit_pageurl(cgit_query_repo, "commit", qry);
        html_link_open(url, NULL, NULL);
-       html_ntxt(80, info->subject);
+       html_ntxt(cgit_max_msg_len, info->subject);
        html_link_close();
        html("</td><td>");
        html_txt(info->author);
@@ -56,7 +56,7 @@ void cgit_print_log(const char *tip, int ofs, int cnt, char *grep)
 
        html("<h2>Log</h2>");
        html("<table class='list nowrap'>");
-       html("<tr><th class='left'>Date</th>"
+       html("<tr class='nohover'><th class='left'>Date</th>"
             "<th class='left'>Message</th>"
             "<th class='left'>Author</th></tr>\n");