Changeset - 508a49a1a02f
[Not reviewed]
default
0 3 0
Thomas De Schampheleire - 11 years ago 2015-02-21 22:45:22
thomas.de_schampheleire@alcatel-lucent.com
pullrequest overview: sanitize display style

Remove the unnecessarily large font size on the pullrequest overview to line
up with the styling of 'my pullrequests'.

Additionally, add some whitespace between the 'show closed PRs' link and the
actual list.
3 files changed with 2 insertions and 5 deletions:
0 comments (0 inline, 0 general)
kallithea/public/css/style.css
Show inline comments
 
@@ -4630,9 +4630,6 @@ div.pr-details-title.closed,
 
    background: #eee;
 
}
 

	
 
div.pr-title {
 
    font-size: 1.6em;
 
}
 
div.pr-details-title {
 
    font-size: 1.6em;
 
    padding: 5px 0px 5px 10px;
kallithea/templates/pullrequests/pullrequest_data.html
Show inline comments
 
@@ -2,7 +2,7 @@
 

	
 
% for pr in c.pullrequests_pager:
 
  <div class="pr ${'pr-closed' if pr.is_closed() else ''}">
 
    <div class="pr-title">
 
    <div>
 
    %if pr.last_review_status:
 
      <i class="icon-circle changeset-status-${pr.last_review_status}" title="${_("Someone voted: %s") % pr.last_review_status}"></i>
 
    %else:
kallithea/templates/pullrequests/pullrequest_show_all.html
Show inline comments
 
@@ -41,7 +41,7 @@ ${self.repo_context_bar('showpullrequest
 
        </ul>
 
    </div>
 

	
 
    <div style="margin: 0 20px">
 
    <div style="margin: 0 20px 10px 20px">
 
        <div>
 
        %if c.closed:
 
            ${h.link_to(_('Hide closed pull requests (only show open pull requests)'), h.url('pullrequest_show_all',repo_name=c.repo_name,from_=c.from_))}
0 comments (0 inline, 0 general)