-rw-r--r-- | cgit.css | 17 | ||||
-rw-r--r-- | ui-tree.c | 18 |
2 files changed, 12 insertions, 23 deletions
@@ -176,3 +176,3 @@ div.error { -td.ls-blob, td.ls-dir, td.ls-mod { +a.ls-blob, a.ls-dir, a.ls-mod { font-family: monospace; @@ -180,7 +180,3 @@ td.ls-blob, td.ls-dir, td.ls-mod { -div.ls-dir a { - font-weight: bold; -} - -th.filesize, td.filesize { +td.ls-size { text-align: right; @@ -188,3 +184,3 @@ th.filesize, td.filesize { -td.filesize { +td.ls-size { font-family: monospace; @@ -192,8 +188,3 @@ td.filesize { -td.links { - font-size: 80%; - padding-left: 2em; -} - -td.filemode { +td.ls-mode { font-family: monospace; @@ -74,7 +74,7 @@ static int ls_item(const unsigned char *sha1, const char *base, int baselen, - html("<tr><td class='filemode'>"); + html("<tr><td class='ls-mode'>"); html_filemode(mode); - html("</td><td "); + html("</td><td>"); if (S_ISDIRLNK(mode)) { - htmlf("class='ls-mod'><a href='"); + htmlf("<a class='ls-mod' href='"); html_attr(fmt(cgit_repo->module_link, @@ -86,13 +86,11 @@ static int ls_item(const unsigned char *sha1, const char *base, int baselen, } else if (S_ISDIR(mode)) { - html("class='ls-dir'>"); - cgit_tree_link(name, NULL, NULL, cgit_query_head, + cgit_tree_link(name, NULL, "ls-dir", cgit_query_head, curr_rev, fullpath); } else { - html("class='ls-blob'>"); - cgit_tree_link(name, NULL, NULL, cgit_query_head, + cgit_tree_link(name, NULL, "ls-blob", cgit_query_head, curr_rev, fullpath); } - htmlf("</td><td class='filesize'>%li</td>", size); + htmlf("</td><td class='ls-size'>%li</td>", size); - html("<td class='links'><a href='"); + html("<td><a href='"); qry = fmt("h=%s&path=%s%s%s", curr_rev, @@ -102,3 +100,3 @@ static int ls_item(const unsigned char *sha1, const char *base, int baselen, html_attr(url); - html("' class='button'>H</a></td>"); + html("' title='Log' class='button'>L</a></td>"); html("</tr>\n"); |