Remove unnecessary line before reply holder

This commit is contained in:
George Tsiolis 2018-11-14 23:17:02 +02:00
parent 5c5a5992c0
commit 504e9e1ae0
3 changed files with 13 additions and 4 deletions

View File

@ -236,17 +236,22 @@ table {
}
}
.discussion-body,
.diff-file {
.discussion-body {
.discussion-reply-holder {
background-color: $white-light;
padding: 10px 16px;
border-radius: 0 0 3px 3px;
padding: 0 $gl-padding 10px;
&.is-replying {
padding-bottom: $gl-padding;
}
}
.diff-file {
.discussion-reply-holder {
padding: 10px 16px;
}
}
}
.discussion-with-resolve-btn {

View File

@ -514,7 +514,6 @@ $note-form-margin-left: 72px;
.discussion-reply-holder {
border-radius: 0 0 $border-radius-default $border-radius-default;
border-top: 1px solid $border-color;
position: relative;
}
}

View File

@ -0,0 +1,5 @@
---
title: Remove unnecessary line before reply holder
merge_request: 23092
author: George Tsiolis
type: changed