Commit e007d32d authored by Scott Stern's avatar Scott Stern Committed by Phil Hughes

Fix board list milestone overlap issue

parent 2a1e6902
......@@ -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