# HG changeset patch # User Marcin Kuzminski # Date 1285835497 -7200 # Node ID 804a14e086dcbbe1a49d928168287b0d1d05240c # Parent 87d80c84df0999e3f79a2e984fa4f5eaef6a24c0 added tags/branches icons in changelog and moved them to right to save some space diff -r 87d80c84df09 -r 804a14e086dc pylons_app/public/css/style.css --- a/pylons_app/public/css/style.css Wed Sep 29 22:38:54 2010 +0200 +++ b/pylons_app/public/css/style.css Thu Sep 30 10:31:37 2010 +0200 @@ -3222,7 +3222,16 @@ font-family: monospace; } - +.right .logtags .branchtag{ + background: #FFFFFF url("../images/icons/arrow_branch.png") no-repeat 130px 9px; + display:block; + padding:12px 2px 2px 24px; +} +.right .logtags .tagtag{ + background: #FFFFFF url("../images/icons/tag_blue.png") no-repeat 130px 9px; + display:block; + padding:12px 2px 2px 24px; +} /* ----------------------------------------------------------- FILE BROWSER diff -r 87d80c84df09 -r 804a14e086dc pylons_app/templates/changelog/changelog.html --- a/pylons_app/templates/changelog/changelog.html Wed Sep 29 22:38:54 2010 +0200 +++ b/pylons_app/templates/changelog/changelog.html Thu Sep 30 10:31:37 2010 +0200 @@ -47,12 +47,6 @@
${_('commit')} ${cs.revision}: ${cs.short_id}@${cs.date}
- - ${cs.branch} - %for tag in cs.tags: - ${tag} - %endfor -
gravatar @@ -80,7 +74,13 @@
${_('Parent')} ${p_cs.revision}: ${h.link_to(p_cs.short_id, h.url('changeset_home',repo_name=c.repo_name,revision=p_cs.short_id),title=p_cs.message)}
- %endfor + %endfor + + ${cs.branch} + %for tag in cs.tags: + ${tag} + %endfor +