##// END OF EJS Templates
added tags/branches icons in changelog and moved them to right to save some space
marcink -
r526:804a14e0 default
parent child Browse files
Show More
@@ -3222,7 +3222,16 b' h3.files_location{'
3222 3222 font-family: monospace;
3223 3223 }
3224 3224
3225
3225 .right .logtags .branchtag{
3226 background: #FFFFFF url("../images/icons/arrow_branch.png") no-repeat 130px 9px;
3227 display:block;
3228 padding:12px 2px 2px 24px;
3229 }
3230 .right .logtags .tagtag{
3231 background: #FFFFFF url("../images/icons/tag_blue.png") no-repeat 130px 9px;
3232 display:block;
3233 padding:12px 2px 2px 24px;
3234 }
3226 3235
3227 3236 /* -----------------------------------------------------------
3228 3237 FILE BROWSER
@@ -47,12 +47,6 b''
47 47 <div id="chg_${cnt+1}" class="container">
48 48 <div class="left">
49 49 <div class="date">${_('commit')} ${cs.revision}: ${cs.short_id}@${cs.date}</div>
50 <span class="logtags">
51 <span class="branchtag">${cs.branch}</span>
52 %for tag in cs.tags:
53 <span class="tagtag">${tag}</span>
54 %endfor
55 </span>
56 50 <div class="author">
57 51 <div class="gravatar">
58 52 <img alt="gravatar" src="${h.gravatar_url(h.email(cs.author),20)}"/>
@@ -80,7 +74,13 b''
80 74 <div class="parent">${_('Parent')} ${p_cs.revision}: ${h.link_to(p_cs.short_id,
81 75 h.url('changeset_home',repo_name=c.repo_name,revision=p_cs.short_id),title=p_cs.message)}
82 76 </div>
83 %endfor
77 %endfor
78 <span class="logtags">
79 <span class="branchtag">${cs.branch}</span>
80 %for tag in cs.tags:
81 <span class="tagtag">${tag}</span>
82 %endfor
83 </span>
84 84 </div>
85 85 </div>
86 86
General Comments 0
You need to be logged in to leave comments. Login now