# HG changeset patch # User Aras Pranckevicius # Date 1325876889 -7200 # Node ID 8fe1a141de025e6332a45d769733d7666a977880 # Parent 9b9e056c177c3bceba174d7907eaf50875b8e08a changelog: more polish diff -r 9b9e056c177c -r 8fe1a141de02 rhodecode/public/css/style.css --- a/rhodecode/public/css/style.css Fri Jan 06 19:13:06 2012 +0200 +++ b/rhodecode/public/css/style.css Fri Jan 06 21:08:09 2012 +0200 @@ -2115,6 +2115,19 @@ padding: 5px !important; } +.tablerow1 { + background-color: #F8F8F8; +} + +.changeset_id { + font-family: monospace; + color: #666666; +} + +.changeset_hash { + color: #000000; +} + #changeset_content { border: 1px solid #CCC; padding: 5px; @@ -2225,12 +2238,9 @@ } #graph_content .container_header { - border: 1px solid #CCC; + border-bottom: 1px solid #DDD; padding: 10px; height: 25px; - -webkit-border-radius: 6px 6px 0px 0px; - -moz-border-radius: 6px 6px 0px 0px; - border-radius: 6px 6px 0px 0px; } #graph_content #rev_range_container { @@ -2239,10 +2249,8 @@ } #graph_content .container { - border-bottom: 1px solid #CCC; - border-left: 1px solid #CCC; - border-right: 1px solid #CCC; - height: 60px; + border-bottom: 1px solid #DDD; + height: 55px; overflow: hidden; } @@ -2266,12 +2274,6 @@ #graph_content .container .left .date { color: #444444; - f_ont-weight: 700; - p_adding-bottom: 5px; -} - -#graph_content .container .left .date span { - vertical-align: text-top; } #graph_content .container .left .author { @@ -2357,9 +2359,7 @@ } .right .parent { - font-size: 90%; - font-family: monospace; - padding: 2px 2px 2px 2px; + color: #666666; } .right .logtags{ padding: 2px 2px 2px 2px; diff -r 9b9e056c177c -r 8fe1a141de02 rhodecode/templates/changelog/changelog.html --- a/rhodecode/templates/changelog/changelog.html Fri Jan 06 19:13:06 2012 +0200 +++ b/rhodecode/templates/changelog/changelog.html Fri Jan 06 21:08:09 2012 +0200 @@ -44,11 +44,11 @@ %for cnt,cs in enumerate(c.pagination): -
+
-
+
${h.checkbox(cs.short_id,class_="changeset_range")} - ${cs.revision}: ${h.short_id(cs.raw_id)}
${cs.date}
+ ${cs.revision}:${h.short_id(cs.raw_id)}
@@ -56,6 +56,7 @@
${h.person(cs.author)}
+
${cs.date}
${h.link_to(h.wrap_paragraphs(cs.message),h.url('changeset_home',repo_name=c.repo_name,revision=cs.raw_id))}
@@ -69,8 +70,9 @@ %endif %if cs.parents: %for p_cs in reversed(cs.parents): -
${_('Parent')} ${p_cs.revision}: ${h.link_to(h.short_id(p_cs.raw_id), - h.url('changeset_home',repo_name=c.repo_name,revision=p_cs.raw_id),title=p_cs.message)} +
${_('Parent')} + ${p_cs.revision}:${h.link_to(h.short_id(p_cs.raw_id), + h.url('changeset_home',repo_name=c.repo_name,revision=p_cs.raw_id),title=p_cs.message)}
%endfor %else: