Skip to content
Snippets Groups Projects
Commit 6e84bfd4 authored by Annabel Dunstone Gray's avatar Annabel Dunstone Gray Committed by Fatih Acet
Browse files

Fix broken UI on commit discussions

parent 132e6c9f
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -176,8 +176,10 @@
background-color: $white-light;
}
 
.discussion-form-container {
padding: $gl-padding-top $gl-padding $gl-padding;
table {
.discussion-form-container {
padding: $gl-padding-top $gl-padding $gl-padding;
}
}
 
.discussion-notes .disabled-comment {
Loading
Loading
Loading
Loading
@@ -13,12 +13,32 @@ $note-form-margin-left: 72px;
}
}
 
@mixin outline-comment() {
margin: $gl-padding;
border: 1px solid $border-color;
border-radius: $border-radius-default;
}
.note-wrapper {
padding: $gl-padding;
&.outlined {
@include outline-comment();
}
}
.main-notes-list {
@include vertical-line(39px);
}
 
.issuable-discussion {
.notes.timeline > .timeline-entry {
.notes {
display: block;
list-style: none;
margin: 0;
padding: 0;
position: relative;
&.timeline > .timeline-entry {
border: 1px solid $border-color;
border-radius: $border-radius-default;
margin: $gl-padding 0;
Loading
Loading
@@ -51,18 +71,6 @@ $note-form-margin-left: 72px;
border-top: 1px solid $border-color;
}
}
}
.main-notes-list {
@include vertical-line(36px);
}
.notes {
display: block;
list-style: none;
margin: 0;
padding: 0;
position: relative;
 
> .note-discussion {
.card {
Loading
Loading
@@ -476,9 +484,7 @@ $note-form-margin-left: 72px;
}
 
.note-wrapper {
margin: $gl-padding;
border: 1px solid $border-color;
border-radius: $border-radius-default;
@include outline-comment();
}
 
.discussion-reply-holder {
Loading
Loading
@@ -488,6 +494,16 @@ $note-form-margin-left: 72px;
}
}
 
.commit-diff {
.notes {
@include vertical-line(52px);
}
.discussion-reply-holder {
border-top: 1px solid $border-color;
}
}
.discussion-header,
.note-header-info {
a {
Loading
Loading
Loading
Loading
@@ -3,7 +3,7 @@
.suppressed-container
%a.show-suppressed-diff.js-show-suppressed-diff Changes suppressed. Click to show.
 
%table.text-file.diff-wrap-lines.code.js-syntax-highlight{ data: diff_view_data, class: too_big ? 'hide' : '' }
%table.text-file.diff-wrap-lines.code.js-syntax-highlight.commit-diff{ data: diff_view_data, class: too_big ? 'hide' : '' }
= render partial: "projects/diffs/line",
collection: diff_file.highlighted_diff_lines,
as: :line,
Loading
Loading
Loading
Loading
@@ -5,7 +5,7 @@
- note_editable = can?(current_user, :admin_note, note)
- note_counter = local_assigns.fetch(:note_counter, 0)
 
%li.timeline-entry{ id: dom_id(note),
%li.timeline-entry.note-wrapper.outlined{ id: dom_id(note),
class: ["note", "note-row-#{note.id}", ('system-note' if note.system)],
data: { author_id: note.author.id,
editable: note_editable,
Loading
Loading
Loading
Loading
@@ -8,7 +8,7 @@
 
- if can_create_note?
.notes.notes-form.timeline
.timeline-entry
.timeline-entry.note-form
.timeline-entry-inner
.flash-container.timeline-content
 
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment