##// 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
@@ -117,7 +117,7 b' table.dataTable {'
117 117
118 118 &.annotate{
119 119 padding-right: 0;
120
120
121 121 div.annotatediv{
122 122 margin: 0 0.7em;
123 123 }
@@ -138,7 +138,7 b' table.dataTable {'
138 138 &.td-journalaction {
139 139 min-width: 300px;
140 140
141 .journal_action_params {
141 .journal_action_params {
142 142 // waiting for feedback
143 143 }
144 144 }
@@ -202,9 +202,11 b' table.dataTable {'
202 202
203 203 &.td-tags {
204 204 padding: .5em 1em .5em 0;
205 width: 140px;
205 206
206 207 .tag {
207 208 margin: 1px;
209 float: left;
208 210 }
209 211 }
210 212
@@ -262,11 +264,11 b' table.dataTable {'
262 264 width: 150px;
263 265 height: 22px;
264 266 overflow: hidden;
265
267
266 268 .tag {
267 269 display: inline-block;
268 270 }
269
271
270 272 &.truncate {
271 273 height: 22px;
272 274 max-height:2em;
@@ -428,7 +430,7 b' table.trending_language_tbl {'
428 430 }
429 431 }
430 432
431 // Compare
433 // Compare
432 434 table.compare_view_commits {
433 435 margin-top: @space;
434 436
@@ -486,7 +488,7 b' table.compare_view_commits {'
486 488 td {
487 489 padding-top: @space;
488 490 }
489
491
490 492 &:first-child td {
491 493 padding-top: 0;
492 494 }
@@ -168,8 +168,8 b''
168 168 ${self.gravatar_with_user(commit.author)}
169 169 </td>
170 170
171 <td class="td-tags tags-col truncate-wrap">
172 <div class="truncate tags-truncate" id="t-${commit.raw_id}">
171 <td class="td-tags tags-col">
172 <div id="t-${commit.raw_id}">
173 173 ## branch
174 174 %if commit.branch:
175 175 <span class="branchtag tag" title="${_('Branch %s') % commit.branch}">
@@ -55,8 +55,8 b''
55 55 ${base.gravatar_with_user(cs.author)}
56 56 </td>
57 57
58 <td class="td-tags truncate-wrap">
59 <div class="truncate tags-truncate"><div class="autoexpand">
58 <td class="td-tags">
59 <div class="autoexpand">
60 60 %if h.is_hg(c.rhodecode_repo):
61 61 %for book in cs.bookmarks:
62 62 <span class="booktag tag" title="${_('Bookmark %s') % book}">
@@ -105,7 +105,7 b''
105 105 </div>
106 106 %endif
107 107 </div>
108
108
109 109 %if not h.is_svn(c.rhodecode_repo):
110 110 <div class="fieldset">
111 111 <div class="left-label">${_('Push new repo:')}</div>
General Comments 0
You need to be logged in to leave comments. Login now