Commit d5027d77 authored by Phil Hughes's avatar Phil Hughes

Merge branch '53768-diff-comment-action-btns' into 'master'

Fix alignment of diff comment buttons

Closes #53768

See merge request gitlab-org/gitlab-ce!22944
parents ac0dfdb1 a597103a
...@@ -433,7 +433,7 @@ Please check your network connection and try again.`; ...@@ -433,7 +433,7 @@ Please check your network connection and try again.`;
<div class="discussion-with-resolve-btn"> <div class="discussion-with-resolve-btn">
<button <button
type="button" type="button"
class="js-vue-discussion-reply btn btn-text-field mr-2 qa-discussion-reply" class="js-vue-discussion-reply btn btn-text-field mr-sm-2 qa-discussion-reply"
title="Add a reply" title="Add a reply"
@click="showReplyForm" @click="showReplyForm"
> >
...@@ -442,7 +442,7 @@ Please check your network connection and try again.`; ...@@ -442,7 +442,7 @@ Please check your network connection and try again.`;
<div v-if="discussion.resolvable"> <div v-if="discussion.resolvable">
<button <button
type="button" type="button"
class="btn btn-default mx-sm-2" class="btn btn-default mr-sm-2"
@click="resolveHandler()" @click="resolveHandler()"
> >
<i <i
...@@ -455,7 +455,7 @@ Please check your network connection and try again.`; ...@@ -455,7 +455,7 @@ Please check your network connection and try again.`;
</div> </div>
<div <div
v-if="discussion.resolvable" v-if="discussion.resolvable"
class="btn-group discussion-actions" class="btn-group discussion-actions ml-sm-2"
role="group" role="group"
> >
<div <div
......
...@@ -595,7 +595,6 @@ $note-form-margin-left: 70px; ...@@ -595,7 +595,6 @@ $note-form-margin-left: 70px;
.discussion-actions { .discussion-actions {
float: right; float: right;
margin-left: 10px;
color: $gray-darkest; color: $gray-darkest;
@include media-breakpoint-down(xs) { @include media-breakpoint-down(xs) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment