Changeset - 938e30790b89
[Not reviewed]
default
0 3 0
Marcin Kuzminski - 13 years ago 2013-04-09 00:40:48
marcin@python-works.com
Grafted from: 0cecc22285ef
#818: Bookmarks Do Not Display on Changeset View
- made the consistent order of displaying tags iconss
3 files changed with 19 insertions and 11 deletions:
0 comments (0 inline, 0 general)
rhodecode/public/css/style.css
Show inline comments
 
@@ -2781,7 +2781,8 @@ h3.files_location {
 
}
 

	
 
.right .logtags .branchtag,
 
.logtags .tagtag,
 
.right .logtags .tagtag,
 
.right .logtags .booktag,
 
.right .merge {
 
    float: right;
 
    line-height: 1em;
rhodecode/templates/changeset/changeset.html
Show inline comments
 
@@ -102,15 +102,22 @@ ${self.context_bar('changelog')}
 
                 %if len(c.changeset.parents)>1:
 
                 <span class="merge">${_('merge')}</span>
 
                 %endif
 
                     %if c.changeset.branch:
 
                     <span class="branchtag" title="${_('Branch %s') % c.changeset.branch}">
 
                     ${h.link_to(c.changeset.branch,h.url('files_home',repo_name=c.repo_name,revision=c.changeset.raw_id))}
 
                     </span>
 
                     %endif
 
                    %if h.is_hg(c.rhodecode_repo):
 
                      %for book in c.changeset.bookmarks:
 
                      <span class="booktag" title="${_('Bookmark %s') % book}">
 
                         ${h.link_to(h.shorter(book),h.url('files_home',repo_name=c.repo_name,revision=c.changeset.raw_id))}
 
                      </span>
 
                      %endfor
 
                    %endif
 
                     %for tag in c.changeset.tags:
 
                         <span class="tagtag"  title="${_('Tag %s') % tag}">
 
                         ${h.link_to(tag,h.url('files_home',repo_name=c.repo_name,revision=c.changeset.raw_id))}</span>
 
                     %endfor
 
                     %if c.changeset.branch:
 
                         <span class="branchtag" title="${_('Branch %s') % c.changeset.branch}">
 
                         ${h.link_to(c.changeset.branch,h.url('files_home',repo_name=c.repo_name,revision=c.changeset.raw_id))}
 
                         </span>
 
                     %endif
 
                 </span>
 
                    </div>
 
            </div>
rhodecode/templates/changeset/changeset_range.html
Show inline comments
 
@@ -76,11 +76,6 @@ ${self.context_bar('changelog')}
 
                %if len(cs.parents)>1:
 
                <span class="merge">${_('merge')}</span>
 
                %endif
 
                %if cs.branch:
 
                <span class="branchtag" title="${_('Branch %s') % cs.branch}">
 
                   ${h.link_to(h.shorter(cs.branch),h.url('files_home',repo_name=c.repo_name,revision=cs.raw_id))}
 
                </span>
 
                %endif
 
                %if h.is_hg(c.rhodecode_repo):
 
                  %for book in cs.bookmarks:
 
                  <span class="bookbook" title="${_('Bookmark %s') % book}">
 
@@ -92,6 +87,11 @@ ${self.context_bar('changelog')}
 
                    <span class="tagtag" title="${_('Tag %s') % tag}">
 
                    ${h.link_to(h.shorter(tag),h.url('files_home',repo_name=c.repo_name,revision=cs.raw_id))}</span>
 
                %endfor
 
                %if cs.branch:
 
                <span class="branchtag" title="${_('Branch %s') % cs.branch}">
 
                   ${h.link_to(h.shorter(cs.branch),h.url('files_home',repo_name=c.repo_name,revision=cs.raw_id))}
 
                </span>
 
                %endif
 
              </span>
 
            </div>
 
           </div>
0 comments (0 inline, 0 general)