Commit 6d9e73d7 authored by Phil Hughes's avatar Phil Hughes

Merge branch...

Merge branch '197309-milestone-in-issue-boards-list-not-cropped-when-longer-than-board-list' into 'master'

Fix board list milestone overlap issue

Closes #197309

See merge request gitlab-org/gitlab!23562
parents cd8bd0ea e007d32d
......@@ -22,7 +22,7 @@
%span.board-title-main-text.block-truncated{ "v-if": "list.type !== \"label\"",
":title" => '((list.label && list.label.description) || list.title || "")',
data: { container: "body" },
":class": "{ 'has-tooltip': !['backlog', 'closed'].includes(list.type) }" }
":class": "{ 'has-tooltip': !['backlog', 'closed'].includes(list.type), 'd-block': list.type === 'milestone' }" }
{{ list.title }}
%span.board-title-sub-text.prepend-left-5.has-tooltip{ "v-if": "list.type === \"assignee\"",
......
---
title: Allow long milestone titles on board lists to be truncated
merge_request:
author:
type: fixed
......@@ -60,14 +60,14 @@
}
}
.board-type-assignee {
.board-title-text {
margin-right: $gl-padding-8;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.board-title-text {
margin-right: $gl-padding-8;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.board-type-assignee {
.board-title-sub-text {
color: $gl-text-color-secondary;
font-weight: normal;
......
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