# HG changeset patch # User Marcin Kuzminski # Date 2010-09-30 08:31:37 # Node ID 804a14e086dcbbe1a49d928168287b0d1d05240c # Parent 87d80c84df0999e3f79a2e984fa4f5eaef6a24c0 added tags/branches icons in changelog and moved them to right to save some space diff --git a/pylons_app/public/css/style.css b/pylons_app/public/css/style.css --- a/pylons_app/public/css/style.css +++ b/pylons_app/public/css/style.css @@ -3222,7 +3222,16 @@ h3.files_location{ 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 --git a/pylons_app/templates/changelog/changelog.html b/pylons_app/templates/changelog/changelog.html --- a/pylons_app/templates/changelog/changelog.html +++ b/pylons_app/templates/changelog/changelog.html @@ -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 +