Commit 81cb58c2 authored by Fatih Acet's avatar Fatih Acet Committed by Marin Jankovski

Merge branch '25930-discussion-actions-overlap-header-text' into 'master'

Fix text overflow

Closes #25930

See merge request !8273
parent 642669cc
......@@ -43,7 +43,7 @@ ul.notes {
}
.system-note-message {
display: inline;
display: inline-block;
&::first-letter {
text-transform: lowercase;
......@@ -55,7 +55,7 @@ ul.notes {
}
p {
display: inline;
display: inline-block;
margin: 0;
&::first-letter {
......@@ -151,10 +151,6 @@ ul.notes {
}
}
}
.note-headline-light {
display: inline;
}
}
.discussion-body {
......@@ -452,11 +448,6 @@ ul.notes {
border-radius: $border-radius-base;
}
.diff-file .note .note-actions {
right: 0;
top: 0;
}
/**
* Line note button on the side of diffs
......@@ -586,3 +577,19 @@ ul.notes {
}
}
}
// Merge request notes in diffs
.diff-file {
// Diff is side by side
.notes_content.parallel .note-header .note-headline-light {
display: block;
position: relative;
}
// Diff is inline
.notes_content .note-header .note-headline-light {
display: inline-block;
position: relative;
}
}
......@@ -10,7 +10,7 @@
.timeline-content
.note-header
= link_to_member(note.project, note.author, avatar: false)
.inline.note-headline-light
.note-headline-light
= note.author.to_reference
- unless note.system
commented
......
---
title: Fix discussion overlap text in regular screens
merge_request: 8273
author:
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