From 7e2632fdece079fa1b2db2babcf9f60bc531d741 Mon Sep 17 00:00:00 2001 From: hufangzhou Date: Wed, 15 Sep 2021 09:06:53 +0800 Subject: [PATCH] * Fix bug #15151. --- module/common/view/kanban.html.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/common/view/kanban.html.php b/module/common/view/kanban.html.php index d4eabbd19f..5eb9569d67 100644 --- a/module/common/view/kanban.html.php +++ b/module/common/view/kanban.html.php @@ -47,7 +47,7 @@ #kanbanList .kanban-col[data-type="unclosedProduct"] .kanban-item:hover {box-shadow: none;} #kanbanList .kanban-col[data-type="unclosedProduct"] .kanban-item > .title {white-space: normal;} #kanbanList .kanban-col[data-type="normalRelease"] .kanban-item > .title {display: flex; flex-direction: row; flex-wrap: nowrap; align-items: center; height: 38px;} -#kanbanList .kanban-col[data-type="normalRelease"] .kanban-item > .title > .text {display: block; white-space: nowrap; text-overflow: ellipsis; overflow: hidden;} +#kanbanList .kanban-col[data-type="normalRelease"] .kanban-item > .title > .text {display: block; white-space: nowrap; text-overflow: clip; overflow: hidden;} #kanbanList .kanban-col[data-type="normalRelease"] .kanban-item > .title.has-icon > .text {margin-right: 5px; max-width: calc(100% - 20px);} #kanbanList .no-flex .kanban-col[data-type="normalRelease"] .kanban-item > .title {display: block; height: 38px;} #kanbanList .no-flex .kanban-col[data-type="normalRelease"] .kanban-item > .title > .text {display: inline-block;}