cosmetic
[infrastructure.git] / gitweb / gitweb.cgi
index b8ad9cc..e002db9 100755 (executable)
@@ -1442,7 +1442,7 @@ sub format_snapshot_links {
                                        snapshot_format=>$fmt
                                ),
                                -title => "in format: $known_snapshot_formats{$fmt}{'display'}"
-                       }, "snapshot");
+                       }, "tar");
        } else { # $num_fmts == 0
                return undef;
        }
@@ -3631,15 +3631,15 @@ sub git_shortlog_body {
                $alternate ^= 1;
                my $author = chop_and_escape_str($co{'author_name'}, 10);
                # git_summary() used print "<td><i>$co{'age_string'}</i></td>\n" .
-               print "<td title=\"$co{'age_string_age'}\"><i>$co{'age_string_date'}</i></td>\n" .
+               print "<td title=\"$co{'age_string_age'}\" class=\"age\">$co{'age_string_date'}</td>\n" .
                      "<td><i>" . $author . "</i></td>\n" .
                      "<td>";
                print format_subject_html($co{'title'}, $co{'title_short'},
                                          href(action=>"commit", hash=>$commit), $ref);
                print "</td>\n" .
                      "<td class=\"link\">" .
-                     $cgi->a({-href => href(action=>"commit", hash=>$commit)}, substr($commit,0,8)) . " | " .
-                     $cgi->a({-href => href(action=>"commitdiff", hash=>$commit)}, "commitdiff") . " | " .
+                     $cgi->a({-class=>"commit",-href => href(action=>"commit", hash=>$commit)}, substr($commit,0,8)) . " | " .
+                     $cgi->a({-href => href(action=>"commitdiff", hash=>$commit)}, "diff") . " | " .
                      $cgi->a({-href => href(action=>"tree", hash=>$commit, hash_base=>$commit)}, "tree");
                my $snapshot_links = format_snapshot_links($commit);
                if (defined $snapshot_links) {
@@ -3740,7 +3740,7 @@ sub git_tags_body {
                }
                $alternate ^= 1;
                if (defined $tag{'age'}) {
-                       print "<td><i>$tag{'age'}</i></td>\n";
+                       print "<td class=\"age\">$tag{'age'}</td>\n";
                } else {
                        print "<td></td>\n";
                }