Commit 61af16df authored by jerasmus's avatar jerasmus

Fix reply box on diffs

Fixed the border for reply box
parent 1d7c653b
...@@ -16,9 +16,14 @@ export default { ...@@ -16,9 +16,14 @@ export default {
}, },
render(h, { props, children }) { render(h, { props, children }) {
if (props.isDiffDiscussion) { if (props.isDiffDiscussion) {
return h('li', { class: 'discussion-collapsible bordered-box clearfix' }, [ return h(
h('ul', { class: 'notes' }, children), 'li',
]); {
class:
'discussion-collapsible gl-border-solid gl-border-gray-100 gl-border-1 gl-rounded-base gl-overflow-hidden clearfix',
},
[h('ul', { class: 'notes' }, children)],
);
} }
return children; return children;
......
...@@ -265,7 +265,7 @@ export default { ...@@ -265,7 +265,7 @@ export default {
<div <div
v-else-if="showReplies" v-else-if="showReplies"
:class="{ 'is-replying': isReplying }" :class="{ 'is-replying': isReplying }"
class="discussion-reply-holder clearfix" class="discussion-reply-holder gl-border-t-0! clearfix"
> >
<user-avatar-link <user-avatar-link
v-if="!isReplying && userCanReply" v-if="!isReplying && userCanReply"
......
...@@ -159,7 +159,6 @@ $note-form-margin-left: 72px; ...@@ -159,7 +159,6 @@ $note-form-margin-left: 72px;
> li { > li {
display: block; display: block;
position: relative; position: relative;
border-bottom: 0;
&.being-posted { &.being-posted {
pointer-events: none; pointer-events: none;
......
---
title: Fix reply box border on diffs
merge_request: 52084
author:
type: fixed
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