]> granicus.if.org Git - cgit/commitdiff
ui-tree: html/css cleanup
authorLars Hjemli <hjemli@gmail.com>
Sun, 17 Jun 2007 11:17:00 +0000 (13:17 +0200)
committerLars Hjemli <hjemli@gmail.com>
Sun, 17 Jun 2007 11:17:00 +0000 (13:17 +0200)
Various fixes to make html and css more "clean". The only visible change
is the link to file/directory log: it is now printed as "L" (for Log)
instead of "H" (for History).

Signed-off-by: Lars Hjemli <hjemli@gmail.com>
cgit.css
ui-tree.c

index 30fde03e8bf94cadf7264b14580ec4eec536436e..cda437e2d0e48f83a4b42159d9f002477ad49415 100644 (file)
--- a/cgit.css
+++ b/cgit.css
@@ -174,28 +174,19 @@ div.error {
        margin: 1em 2em;
 }
 
-td.ls-blob, td.ls-dir, td.ls-mod {
+a.ls-blob, a.ls-dir, a.ls-mod {
        font-family: monospace;
 }
 
-div.ls-dir a {
-       font-weight: bold;
-}
-
-th.filesize, td.filesize {
+td.ls-size {
        text-align: right;
 }
 
-td.filesize {
+td.ls-size {
        font-family: monospace;
 }
 
-td.links {
-       font-size: 80%;
-       padding-left: 2em;
-}
-
-td.filemode {
+td.ls-mode {
        font-family: monospace;
 }
 
index 3b82374b4b6759feca17f23024595aea2cf705d4..d503bee9cc8b316c0ced1ad96f694bc480fa90f7 100644 (file)
--- a/ui-tree.c
+++ b/ui-tree.c
@@ -72,11 +72,11 @@ static int ls_item(const unsigned char *sha1, const char *base, int baselen,
                return 0;
        }
 
-       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,
                              name,
                              sha1_to_hex(sha1)));
@@ -84,23 +84,21 @@ static int ls_item(const unsigned char *sha1, const char *base, int baselen,
                html_txt(name);
                html("</a>");
        } 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&amp;path=%s%s%s", curr_rev,
                  cgit_query_path ? cgit_query_path : "",
                  cgit_query_path ? "/" : "", pathname);
        url = cgit_pageurl(cgit_query_repo, "log", qry);
        html_attr(url);
-       html("' class='button'>H</a></td>");
+       html("' title='Log' class='button'>L</a></td>");
        html("</tr>\n");
        free(name);
        return 0;