# HG changeset patch # User Marcin Kuzminski # Date 2020-04-03 19:30:17 # Node ID a3f90209bc3eeab74a31686e0a0b6b23c1cbe5bd # Parent 316080ab7b146af1832527662ff0a903aabdd879 pull-requests: fixed small UI glitches in pull request view. diff --git a/rhodecode/public/css/buttons.less b/rhodecode/public/css/buttons.less --- a/rhodecode/public/css/buttons.less +++ b/rhodecode/public/css/buttons.less @@ -265,7 +265,7 @@ input[type="button"] { .btn-action-switcher-container{ position: absolute; top: 30px; - left: 0px; + left: -82px; } .btn-action-switcher { @@ -378,7 +378,9 @@ input[type="button"] { background-color: transparent; border: none; } + .noselect } + .grid_delete { .action_button { border: none; diff --git a/rhodecode/public/css/main.less b/rhodecode/public/css/main.less --- a/rhodecode/public/css/main.less +++ b/rhodecode/public/css/main.less @@ -419,8 +419,8 @@ ul.auth_plugins { } .pr-title-input { - width: 80%; - font-size: 1em; + width: 100%; + font-size: 18px; margin: 0 0 4px 0; padding: 0; line-height: 1.7em; @@ -440,6 +440,7 @@ ul.auth_plugins { color: black; opacity: 1; background: #fff; + font-size: 18px; } } @@ -1483,10 +1484,16 @@ table.integrations { border-bottom: @border-thickness solid @grey5; margin-bottom: @space; } + .reviewers-title { - width: 25%; - min-width: 200px; + width: 25%; + min-width: 200px; + + &.first-panel { + margin-top: 34px; + } } + .reviewers { width: 25%; min-width: 200px; diff --git a/rhodecode/templates/channelstream/plugin_init.mako b/rhodecode/templates/channelstream/plugin_init.mako --- a/rhodecode/templates/channelstream/plugin_init.mako +++ b/rhodecode/templates/channelstream/plugin_init.mako @@ -15,5 +15,4 @@ 'webapp_location': '${h.route_url('home').rstrip('/')}' }; %endif - diff --git a/rhodecode/templates/pullrequests/pullrequest_show.mako b/rhodecode/templates/pullrequests/pullrequest_show.mako --- a/rhodecode/templates/pullrequests/pullrequest_show.mako +++ b/rhodecode/templates/pullrequests/pullrequest_show.mako @@ -11,15 +11,6 @@ <%def name="breadcrumbs_links()"> -
- % if c.pull_request.is_closed(): - ${_('Closed')} - % endif - -
- <%def name="menu_bar_nav()"> @@ -40,11 +31,19 @@
- ${self.breadcrumbs()} -
+
+ % if c.pull_request.is_closed(): + ${_('Closed')} + % endif + +
+ + <% summary = lambda n:{False:'summary-short'}.get(n) %>
@@ -295,7 +294,7 @@
## REVIEWERS -
+
${_('Pull request reviewers')} %if c.allowed_to_update: