diff options
| -rw-r--r-- | cgit.css | 8 | ||||
| -rw-r--r-- | ui-log.c | 2 | ||||
| -rw-r--r-- | ui-shared.c | 8 |
3 files changed, 18 insertions, 0 deletions
@@ -673,6 +673,14 @@ div#cgit div.footer a:hover { text-decoration: underline; } +div#cgit span.msg-avail { + color: #000; + margin: 0px 0.5em; + padding: 0px 0.25em; + background-color: #f0f0f0; + border: solid 1px #777777; +} + div#cgit a.branch-deco { color: #000; margin: 0px 0.5em; @@ -240,6 +240,8 @@ static void print_commit(struct commit *commit, struct rev_info *revs) } cgit_commit_link(info->subject, NULL, NULL, ctx.qry.head, oid_to_hex(&commit->object.oid), ctx.qry.vpath); + if (!ctx.qry.showmsg && strlen(info->msg) > 0) + html("<span class='msg-avail'>...</span>"); show_commit_decorations(commit); html("</td><td>"); cgit_open_filter(ctx.repo->email_filter, info->author_email, "log"); diff --git a/ui-shared.c b/ui-shared.c index 11aed19..baea6f2 100644 --- a/ui-shared.c +++ b/ui-shared.c @@ -770,6 +770,10 @@ static void print_rel_vcs_link(const char *url) static int emit_css_link(struct string_list_item *s, void *arg) { + /* Do not emit anything if css= is specified. */ + if (s && *s->string == '\0') + return 0; + html("<link rel='stylesheet' type='text/css' href='"); if (s) html_attr(s->string); @@ -782,6 +786,10 @@ static int emit_css_link(struct string_list_item *s, void *arg) static int emit_js_link(struct string_list_item *s, void *arg) { + /* Do not emit anything if js= is specified. */ + if (s && *s->string == '\0') + return 0; + html("<script type='text/javascript' src='"); if (s) html_attr(s->string); |
