Show More
1 | NO CONTENT: new file 100644, binary diff hidden |
|
NO CONTENT: new file 100644, binary diff hidden |
1 | NO CONTENT: new file 100644, binary diff hidden |
|
NO CONTENT: new file 100644, binary diff hidden |
1 | NO CONTENT: new file 100644, binary diff hidden |
|
NO CONTENT: new file 100644, binary diff hidden |
1 | NO CONTENT: new file 100644, binary diff hidden |
|
NO CONTENT: new file 100644, binary diff hidden |
@@ -140,7 +140,7 b' h2.no-link {' | |||||
140 | } |
|
140 | } | |
141 | h2.no-border { |
|
141 | h2.no-border { | |
142 | color: #FFF; |
|
142 | color: #FFF; | |
143 |
background: # |
|
143 | background: #556CB5; | |
144 | border: 0; |
|
144 | border: 0; | |
145 | } |
|
145 | } | |
146 | h2 a { |
|
146 | h2 a { | |
@@ -229,24 +229,22 b' table.annotated tr td {' | |||||
229 | } |
|
229 | } | |
230 |
|
230 | |||
231 | span.logtags span { |
|
231 | span.logtags span { | |
232 | padding: 2px 6px; |
|
232 | background-repeat:no-repeat; | |
233 | font-weight: normal; |
|
233 | height:16px; | |
234 | font-size: 11px; |
|
234 | padding-left:20px; | |
235 | border: 1px solid; |
|
235 | padding-top:0px; | |
236 | background-color: #ffaaff; |
|
236 | text-align:left; | |
237 | border-color: #ffccff #ff00ee #ff00ee #ffccff; |
|
237 | font-weight: bold; | |
238 | } |
|
238 | } | |
239 | span.logtags span.tagtag { |
|
239 | span.logtags span.tagtag { | |
240 | background-color: #ffffaa; |
|
240 | background-image:url("/images/label_16.png"); | |
241 | border-color: #ffffcc #ffee00 #ffee00 #ffffcc; |
|
|||
242 | } |
|
241 | } | |
243 | span.logtags span.branchtag { |
|
242 | span.logtags span.branchtag { | |
244 | background-color: #aaffaa; |
|
243 | background-image:url("/images/left_16.png"); | |
245 | border-color: #ccffcc #00cc33 #00cc33 #ccffcc; |
|
244 | color: #628F53; | |
246 | } |
|
245 | } | |
247 | span.logtags span.inbranchtag { |
|
246 | span.logtags span.inbranchtag { | |
248 | background-color: #d5dde6; |
|
247 | background-image:url("/images/left_16.png"); | |
249 | border-color: #e3ecf4 #9398f4 #9398f4 #e3ecf4; |
|
|||
250 | } |
|
248 | } | |
251 |
|
249 | |||
252 | div.diff pre { |
|
250 | div.diff pre { | |
@@ -516,21 +514,21 b' table.code-browser tbody td {' | |||||
516 |
|
514 | |||
517 | } |
|
515 | } | |
518 | .browser-file { |
|
516 | .browser-file { | |
519 |
background-image:url("/images/ |
|
517 | background-image:url("/images/document_16.png"); | |
520 | background-repeat:no-repeat; |
|
518 | background-repeat:no-repeat; | |
521 | display:block; |
|
519 | display:block; | |
522 | height:16px; |
|
520 | height:16px; | |
523 | padding-left:20px; |
|
521 | padding-left:20px; | |
524 |
padding-top: |
|
522 | padding-top:0px; | |
525 | text-align:left; |
|
523 | text-align:left; | |
526 | } |
|
524 | } | |
527 | .browser-dir { |
|
525 | .browser-dir { | |
528 | background-image:url("/images/folder.png"); |
|
526 | background-image:url("/images/folder_16.png"); | |
529 | background-repeat:no-repeat; |
|
527 | background-repeat:no-repeat; | |
530 | display:block; |
|
528 | display:block; | |
531 | height:16px; |
|
529 | height:16px; | |
532 | padding-left:20px; |
|
530 | padding-left:20px; | |
533 |
padding-top: |
|
531 | padding-top:0px; | |
534 | text-align:left; |
|
532 | text-align:left; | |
535 | } |
|
533 | } | |
536 |
|
534 |
@@ -7,7 +7,14 b' from pylons_app.lib import filters' | |||||
7 | <tr class="parity${cnt%2}"> |
|
7 | <tr class="parity${cnt%2}"> | |
8 | <td>${cs._ctx.date()|n,filters.age}</td> |
|
8 | <td>${cs._ctx.date()|n,filters.age}</td> | |
9 | <td title="${cs.author}">${cs.author|n,filters.person}</td> |
|
9 | <td title="${cs.author}">${cs.author|n,filters.person}</td> | |
10 |
<td>${h.link_to(cs.message,h.url('changeset_home',repo_name=c.repo_name,revision=cs._short))} |
|
10 | <td>${h.link_to(cs.message,h.url('changeset_home',repo_name=c.repo_name,revision=cs._short))} | |
|
11 | <span class="logtags"> | |||
|
12 | <span class="branchtag">${cs.branch}</span> | |||
|
13 | %for tag in cs.tags: | |||
|
14 | <span class="tagtag">${tag}</span> | |||
|
15 | %endfor | |||
|
16 | </span> | |||
|
17 | </td> | |||
11 | <td class="nowrap"> |
|
18 | <td class="nowrap"> | |
12 | ${h.link_to(_('changeset'),h.url('changeset_home',repo_name=c.repo_name,revision=cs._short))} |
|
19 | ${h.link_to(_('changeset'),h.url('changeset_home',repo_name=c.repo_name,revision=cs._short))} | |
13 | | |
|
20 | | |
@@ -53,7 +53,16 b' from pylons_app.lib import filters' | |||||
53 | <tr class="parity${cnt%2}"> |
|
53 | <tr class="parity${cnt%2}"> | |
54 | <td>${cs._ctx.date()|n,filters.age}</td> |
|
54 | <td>${cs._ctx.date()|n,filters.age}</td> | |
55 | <td>${cs.author}</td> |
|
55 | <td>${cs.author}</td> | |
56 | <td>${h.link_to(cs.message,h.url('changeset_home',repo_name=c.repo_name,revision=cs._short))}</td> |
|
56 | <td> | |
|
57 | ||||
|
58 | ${h.link_to(cs.message,h.url('changeset_home',repo_name=c.repo_name,revision=cs._short))} | |||
|
59 | <span class="logtags"> | |||
|
60 | <span class="branchtag">${cs.branch}</span> | |||
|
61 | %for tag in cs.tags: | |||
|
62 | <span class="tagtag">${tag}</span> | |||
|
63 | %endfor | |||
|
64 | </span> | |||
|
65 | </td> | |||
57 | <td class="nowrap"> |
|
66 | <td class="nowrap"> | |
58 | ${h.link_to(_('changeset'),h.url('changeset_home',repo_name=c.repo_name,revision=cs._short))} |
|
67 | ${h.link_to(_('changeset'),h.url('changeset_home',repo_name=c.repo_name,revision=cs._short))} | |
59 | | |
|
68 | | |
General Comments 0
You need to be logged in to leave comments.
Login now