# HG changeset patch # User Thomas De Schampheleire # Date 2015-02-21 22:45:22 # Node ID 508a49a1a02f638c7229d2209ab014df972fe310 # Parent a40824531f684ed7d4e7ec74b9332c1f49ea1b97 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. diff --git a/kallithea/public/css/style.css b/kallithea/public/css/style.css --- a/kallithea/public/css/style.css +++ b/kallithea/public/css/style.css @@ -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; diff --git a/kallithea/templates/pullrequests/pullrequest_data.html b/kallithea/templates/pullrequests/pullrequest_data.html --- a/kallithea/templates/pullrequests/pullrequest_data.html +++ b/kallithea/templates/pullrequests/pullrequest_data.html @@ -2,7 +2,7 @@ % for pr in c.pullrequests_pager:
-
+
%if pr.last_review_status: %else: diff --git a/kallithea/templates/pullrequests/pullrequest_show_all.html b/kallithea/templates/pullrequests/pullrequest_show_all.html --- a/kallithea/templates/pullrequests/pullrequest_show_all.html +++ b/kallithea/templates/pullrequests/pullrequest_show_all.html @@ -41,7 +41,7 @@ ${self.repo_context_bar('showpullrequest
-
+
%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_))}