##// END OF EJS Templates
Changeset range shows branch/tags/bookmarks
marcink -
r2926:3555c566 beta
parent child Browse files
Show More
@@ -61,32 +61,33 a:hover {
61 text-decoration: underline;
61 text-decoration: underline;
62 }
62 }
63
63
64 h1,h2,h3,h4,h5,h6 {
64 h1,h2,h3,h4,h5,h6,
65 div.h1,div.h2,div.h3,div.h4,div.h5,div.h6 {
65 color: #292929;
66 color: #292929;
66 font-weight: 700;
67 font-weight: 700;
67 }
68 }
68
69
69 h1 {
70 h1,div.h1 {
70 font-size: 22px;
71 font-size: 22px;
71 }
72 }
72
73
73 h2 {
74 h2,div.h2 {
74 font-size: 20px;
75 font-size: 20px;
75 }
76 }
76
77
77 h3 {
78 h3,div.h3 {
78 font-size: 18px;
79 font-size: 18px;
79 }
80 }
80
81
81 h4 {
82 h4,div.h4 {
82 font-size: 16px;
83 font-size: 16px;
83 }
84 }
84
85
85 h5 {
86 h5,div.h5 {
86 font-size: 14px;
87 font-size: 14px;
87 }
88 }
88
89
89 h6 {
90 h6,div.h6 {
90 font-size: 11px;
91 font-size: 11px;
91 }
92 }
92
93
@@ -1143,7 +1144,9 tbody .yui-dt-editable { cursor: pointer
1143 text-decoration: none;
1144 text-decoration: none;
1144 }
1145 }
1145
1146
1146 #content div.box h1,#content div.box h2,#content div.box h3,#content div.box h4,#content div.box h5,#content div.box h6
1147 #content div.box h1,#content div.box h2,#content div.box h3,#content div.box h4,#content div.box h5,#content div.box h6,
1148 #content div.box div.h1,#content div.box div.h2,#content div.box div.h3,#content div.box div.h4,#content div.box div.h5,#content div.box div.h6
1149
1147 {
1150 {
1148 clear: both;
1151 clear: both;
1149 overflow: hidden;
1152 overflow: hidden;
@@ -68,12 +68,35
68 %for cs in c.cs_ranges:
68 %for cs in c.cs_ranges:
69 ##${comment.comment_inline_form(cs)}
69 ##${comment.comment_inline_form(cs)}
70 ## diff block
70 ## diff block
71 <h3 style="padding-top:8px;">
71 <div class="h3">
72 <a class="tooltip" title="${h.tooltip(cs.message)}" href="${h.url('changeset_home',repo_name=c.repo_name,revision=cs.raw_id)}">${'r%s:%s' % (cs.revision,h.short_id(cs.raw_id))}</a>
72 <a class="tooltip" title="${h.tooltip(cs.message)}" href="${h.url('changeset_home',repo_name=c.repo_name,revision=cs.raw_id)}">${'r%s:%s' % (cs.revision,h.short_id(cs.raw_id))}</a>
73 <div class="gravatar">
73 <div class="gravatar">
74 <img alt="gravatar" src="${h.gravatar_url(h.email_or_none(cs.author),20)}"/>
74 <img alt="gravatar" src="${h.gravatar_url(h.email_or_none(cs.author),20)}"/>
75 </div>
76 <div class="right">
77 <span class="logtags">
78 %if len(cs.parents)>1:
79 <span class="merge">${_('merge')}</span>
80 %endif
81 %if cs.branch:
82 <span class="branchtag" title="${'%s %s' % (_('branch'),cs.branch)}">
83 ${h.link_to(h.shorter(cs.branch),h.url('files_home',repo_name=c.repo_name,revision=cs.raw_id))}
84 </span>
85 %endif
86 %if h.is_hg(c.rhodecode_repo):
87 %for book in cs.bookmarks:
88 <span class="bookbook" title="${'%s %s' % (_('bookmark'),book)}">
89 ${h.link_to(h.shorter(book),h.url('files_home',repo_name=c.repo_name,revision=cs.raw_id))}
90 </span>
91 %endfor
92 %endif
93 %for tag in cs.tags:
94 <span class="tagtag" title="${'%s %s' % (_('tag'),tag)}">
95 ${h.link_to(h.shorter(tag),h.url('files_home',repo_name=c.repo_name,revision=cs.raw_id))}</span>
96 %endfor
97 </span>
98 </div>
75 </div>
99 </div>
76 </h3>
77 ${diff_block.diff_block(c.changes[cs.raw_id])}
100 ${diff_block.diff_block(c.changes[cs.raw_id])}
78 ##${comment.comments(cs)}
101 ##${comment.comments(cs)}
79
102
General Comments 0
You need to be logged in to leave comments. Login now