diff --git a/rhodecode/public/css/code-block.less b/rhodecode/public/css/code-block.less --- a/rhodecode/public/css/code-block.less +++ b/rhodecode/public/css/code-block.less @@ -439,6 +439,11 @@ div.codeblock { padding: @padding; border-bottom: @border-thickness solid @grey5; + .rc-user { + min-width: 0; + margin-right: .5em; + } + .stats { clear: both; margin: 0 0 @padding 0; diff --git a/rhodecode/public/css/comments.less b/rhodecode/public/css/comments.less --- a/rhodecode/public/css/comments.less +++ b/rhodecode/public/css/comments.less @@ -52,6 +52,11 @@ tr.inline-comments div { padding: 4px 0 0 0; line-height: 1em; + .rc-user { + min-width: 0; + margin: -2px .5em 0 0; + } + .meta { position: relative; width: 100%; 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 @@ -671,6 +671,7 @@ label { } .rc-user { // gravatar + user wrapper + float: left; position: relative; min-width: 100px; max-width: 200px; @@ -1223,6 +1224,16 @@ table.issuetracker { max-width: 83%; padding-right: 20px; vertical-align: middle; + line-height: 1; + + .rc-user { + min-width: 0; + margin: -2px 1em 0 0; + } + + .reviewer { + float: left; + } } .reviewer_member_remove { @@ -1253,7 +1264,7 @@ table.issuetracker { } .pr-details-content { margin-top: @textmargin; - margin-bottom: @textmargin/2; + margin-bottom: @textmargin; } .pr-description { white-space:pre-wrap; 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 @@ -195,9 +195,9 @@
- - ${self.gravatar_with_user(member.email, 16)} - (${_('owner') if c.pull_request.user_id == member.user_id else _('reviewer')}) +
+ ${self.gravatar_with_user(member.email, 16)}
(${_('owner') if c.pull_request.user_id == member.user_id else _('reviewer')})
+
%if c.allowed_to_update: