Show More
@@ -4657,7 +4657,7 b' PULL REQUESTS' | |||||
4657 | font-weight: bold; |
|
4657 | font-weight: bold; | |
4658 | } |
|
4658 | } | |
4659 |
|
4659 | |||
4660 | h3.closed, |
|
4660 | div.pr-details-title.closed, | |
4661 | #pullrequests_container li.closed a |
|
4661 | #pullrequests_container li.closed a | |
4662 | { |
|
4662 | { | |
4663 | color: #555; |
|
4663 | color: #555; | |
@@ -4667,6 +4667,11 b' h3.closed,' | |||||
4667 | div.pr-title { |
|
4667 | div.pr-title { | |
4668 | font-size: 1.6em; |
|
4668 | font-size: 1.6em; | |
4669 | } |
|
4669 | } | |
|
4670 | div.pr-details-title{ | |||
|
4671 | font-size: 1.6em; | |||
|
4672 | margin: 0px 20px 0px 20px; | |||
|
4673 | padding: 5px 0px 5px 10px; | |||
|
4674 | } | |||
4670 |
|
4675 | |||
4671 | div.pr { |
|
4676 | div.pr { | |
4672 | border-bottom: 1px solid #DDD; |
|
4677 | border-bottom: 1px solid #DDD; |
@@ -20,13 +20,12 b'' | |||||
20 | ${self.breadcrumbs()} |
|
20 | ${self.breadcrumbs()} | |
21 | </div> |
|
21 | </div> | |
22 |
|
22 | |||
23 |
< |
|
23 | <div class="pr-details-title ${'closed' if c.pull_request.is_closed() else ''}"> | |
24 | <img src="${h.url('/images/icons/flag_status_%s.png' % str(c.pull_request.last_review_status))}" /> |
|
|||
25 | ${_('Title')}: ${c.pull_request.title} |
|
24 | ${_('Title')}: ${c.pull_request.title} | |
26 | %if c.pull_request.is_closed(): |
|
25 | %if c.pull_request.is_closed(): | |
27 | (${_('Closed')}) |
|
26 | (${_('Closed')}) | |
28 | %endif |
|
27 | %endif | |
29 |
</ |
|
28 | </div> | |
30 |
|
29 | |||
31 | <div class="form"> |
|
30 | <div class="form"> | |
32 | <div id="summary" class="fields"> |
|
31 | <div id="summary" class="fields"> | |
@@ -37,13 +36,14 b'' | |||||
37 | <div class="input"> |
|
36 | <div class="input"> | |
38 | <div class="changeset-status-container" style="float:none;clear:both"> |
|
37 | <div class="changeset-status-container" style="float:none;clear:both"> | |
39 | %if c.current_changeset_status: |
|
38 | %if c.current_changeset_status: | |
40 | <div title="${_('Pull request status calculated from votes')}" class="changeset-status-lbl"> |
|
39 | <div class="changeset-status-ico" style="padding:0px 4px 0px 0px"><img src="${h.url('/images/icons/flag_status_%s.png' % c.current_changeset_status)}" title="${_('Pull request status calculated from votes')}"/></div> | |
|
40 | <div class="changeset-status-lbl tooltip" title="${_('Pull request status calculated from votes')}"> | |||
41 | %if c.pull_request.is_closed(): |
|
41 | %if c.pull_request.is_closed(): | |
42 | ${_('Closed')}, |
|
42 | ${_('Closed')}, | |
43 | %endif |
|
43 | %endif | |
44 | ${h.changeset_status_lbl(c.current_changeset_status)} |
|
44 | ${h.changeset_status_lbl(c.current_changeset_status)} | |
45 | </div> |
|
45 | </div> | |
46 | <div class="changeset-status-ico" style="padding:1px 4px"><img src="${h.url('/images/icons/flag_status_%s.png' % c.current_changeset_status)}" title="${_('Pull request status calculated from votes')}"/></div> |
|
46 | ||
47 | %endif |
|
47 | %endif | |
48 | </div> |
|
48 | </div> | |
49 | </div> |
|
49 | </div> |
General Comments 0
You need to be logged in to leave comments.
Login now