##// END OF EJS Templates
ux: show multiple tags/branches in changelog/summary instead of truncating
dan -
r786:6387ba98 default
parent child Browse files
Show More
@@ -202,9 +202,11 b' table.dataTable {'
202
202
203 &.td-tags {
203 &.td-tags {
204 padding: .5em 1em .5em 0;
204 padding: .5em 1em .5em 0;
205 width: 140px;
205
206
206 .tag {
207 .tag {
207 margin: 1px;
208 margin: 1px;
209 float: left;
208 }
210 }
209 }
211 }
210
212
@@ -168,8 +168,8 b''
168 ${self.gravatar_with_user(commit.author)}
168 ${self.gravatar_with_user(commit.author)}
169 </td>
169 </td>
170
170
171 <td class="td-tags tags-col truncate-wrap">
171 <td class="td-tags tags-col">
172 <div class="truncate tags-truncate" id="t-${commit.raw_id}">
172 <div id="t-${commit.raw_id}">
173 ## branch
173 ## branch
174 %if commit.branch:
174 %if commit.branch:
175 <span class="branchtag tag" title="${_('Branch %s') % commit.branch}">
175 <span class="branchtag tag" title="${_('Branch %s') % commit.branch}">
@@ -55,8 +55,8 b''
55 ${base.gravatar_with_user(cs.author)}
55 ${base.gravatar_with_user(cs.author)}
56 </td>
56 </td>
57
57
58 <td class="td-tags truncate-wrap">
58 <td class="td-tags">
59 <div class="truncate tags-truncate"><div class="autoexpand">
59 <div class="autoexpand">
60 %if h.is_hg(c.rhodecode_repo):
60 %if h.is_hg(c.rhodecode_repo):
61 %for book in cs.bookmarks:
61 %for book in cs.bookmarks:
62 <span class="booktag tag" title="${_('Bookmark %s') % book}">
62 <span class="booktag tag" title="${_('Bookmark %s') % book}">
General Comments 0
You need to be logged in to leave comments. Login now