Show More
@@ -2521,6 +2521,16 b' h3.files_location {' | |||||
2521 | text-align: left; |
|
2521 | text-align: left; | |
2522 | } |
|
2522 | } | |
2523 |
|
2523 | |||
|
2524 | #graph_content .container .checkbox { | |||
|
2525 | width: 12px; | |||
|
2526 | font-size: 0.85em; | |||
|
2527 | } | |||
|
2528 | ||||
|
2529 | #graph_content .container .status { | |||
|
2530 | width: 14px; | |||
|
2531 | font-size: 0.85em; | |||
|
2532 | } | |||
|
2533 | ||||
2524 | #graph_content .container .author { |
|
2534 | #graph_content .container .author { | |
2525 | width: 105px; |
|
2535 | width: 105px; | |
2526 | } |
|
2536 | } | |
@@ -2551,10 +2561,6 b' h3.files_location {' | |||||
2551 | position: relative; |
|
2561 | position: relative; | |
2552 | } |
|
2562 | } | |
2553 |
|
2563 | |||
2554 | #graph_content #changesets td.checkbox { |
|
|||
2555 | width: 20px; |
|
|||
2556 | } |
|
|||
2557 |
|
||||
2558 | #graph_content .container .changeset_range { |
|
2564 | #graph_content .container .changeset_range { | |
2559 | float: left; |
|
2565 | float: left; | |
2560 | margin: 6px 3px; |
|
2566 | margin: 6px 3px; |
@@ -57,6 +57,18 b'' | |||||
57 | <tr id="chg_${cnt+1}" class="container ${'tablerow%s' % (cnt%2)}"> |
|
57 | <tr id="chg_${cnt+1}" class="container ${'tablerow%s' % (cnt%2)}"> | |
58 | <td class="checkbox"> |
|
58 | <td class="checkbox"> | |
59 | ${h.checkbox(cs.raw_id,class_="changeset_range")} |
|
59 | ${h.checkbox(cs.raw_id,class_="changeset_range")} | |
|
60 | <td class="status"> | |||
|
61 | %if c.statuses.get(cs.raw_id): | |||
|
62 | <div class="changeset-status-ico"> | |||
|
63 | %if c.statuses.get(cs.raw_id)[2]: | |||
|
64 | <a class="tooltip" title="${_('Click to open associated pull request #%s' % c.statuses.get(cs.raw_id)[2])}" href="${h.url('pullrequest_show',repo_name=c.statuses.get(cs.raw_id)[3],pull_request_id=c.statuses.get(cs.raw_id)[2])}"> | |||
|
65 | <img src="${h.url('/images/icons/flag_status_%s.png' % c.statuses.get(cs.raw_id)[0])}" /> | |||
|
66 | </a> | |||
|
67 | %else: | |||
|
68 | <img src="${h.url('/images/icons/flag_status_%s.png' % c.statuses.get(cs.raw_id)[0])}" /> | |||
|
69 | %endif | |||
|
70 | </div> | |||
|
71 | %endif | |||
60 | </td> |
|
72 | </td> | |
61 | <td class="author"> |
|
73 | <td class="author"> | |
62 | <img alt="gravatar" src="${h.gravatar_url(h.email_or_none(cs.author),16)}"/> |
|
74 | <img alt="gravatar" src="${h.gravatar_url(h.email_or_none(cs.author),16)}"/> |
General Comments 0
You need to be logged in to leave comments.
Login now