This commit is contained in:
tianshujie
2023-01-29 12:05:13 +08:00
parent c6829418b3
commit f08ba04142
2 changed files with 2 additions and 1 deletions
+1
View File
@@ -75,3 +75,4 @@
#kanbans .kanban-affixed .kanban-header-col .title.action-dbc .storyColumn .text {color: #fff;}
#kanbans .kanban-affixed .kanban-header-col .title.action-dbc .storyColumn .caret {display: none;}
.kanban-card a[disabled] {color: #313c52;}
.kanban-col .icon-arrow-up + .tooltip {white-space: nowrap;}
+1 -1
View File
@@ -357,7 +357,7 @@ function renderColumnCount($count, count, col)
}
var text = count + '/' + (col.limit < 0 ? '<i class="icon icon-infinite"></i>' : col.limit);
$count.html(text + '<i class="icon icon-arrow-up"></i>');
$count.html(text + '<i class="icon icon-arrow-up" data-toggle="tooltip" data-original-title="' + kanbanLang.limitExceeded + '"></i>');
if(col.limit != -1 && col.limit < count)
{