diff --git a/rhodecode/public/css/style.css b/rhodecode/public/css/style.css --- a/rhodecode/public/css/style.css +++ b/rhodecode/public/css/style.css @@ -4657,7 +4657,7 @@ PULL REQUESTS font-weight: bold; } -h3.closed, +div.pr-details-title.closed, #pullrequests_container li.closed a { color: #555; @@ -4667,6 +4667,11 @@ h3.closed, div.pr-title { font-size: 1.6em; } +div.pr-details-title{ + font-size: 1.6em; + margin: 0px 20px 0px 20px; + padding: 5px 0px 5px 10px; +} div.pr { border-bottom: 1px solid #DDD; diff --git a/rhodecode/templates/pullrequests/pullrequest_show.html b/rhodecode/templates/pullrequests/pullrequest_show.html --- a/rhodecode/templates/pullrequests/pullrequest_show.html +++ b/rhodecode/templates/pullrequests/pullrequest_show.html @@ -20,13 +20,12 @@ ${self.breadcrumbs()} -

- +
${_('Title')}: ${c.pull_request.title} %if c.pull_request.is_closed(): (${_('Closed')}) %endif -

+
@@ -37,13 +36,14 @@
%if c.current_changeset_status: -
+
+
%if c.pull_request.is_closed(): ${_('Closed')}, %endif ${h.changeset_status_lbl(c.current_changeset_status)}
-
+ %endif