Skip to content

Commit 09a387b

Browse files
committed
Merge branch 'fix/assignee-name-wrap' into 'master'
fix / assigne username wrapping problem has been fixed See merge request gitlab-org/gitlab-ce!18986
2 parents f5e0b35 + 3babd1e commit 09a387b

File tree

2 files changed

+20
-3
lines changed

2 files changed

+20
-3
lines changed

app/assets/stylesheets/pages/issuable.scss

Lines changed: 15 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -197,9 +197,21 @@
197197
}
198198

199199
&.assignee {
200-
.author_link:hover {
201-
.author {
202-
text-decoration: underline;
200+
.author_link {
201+
display: block;
202+
padding-left: 42px;
203+
position: relative;
204+
205+
&:hover {
206+
.author {
207+
text-decoration: underline;
208+
}
209+
}
210+
211+
.avatar {
212+
left: 0;
213+
position: absolute;
214+
top: 0;
203215
}
204216
}
205217
}
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
title: Wrapping problem on the issues page has been fixed
3+
merge_request:
4+
author:
5+
type: fixed

0 commit comments

Comments
 (0)