* Fix bug #41513.
This commit is contained in:
@@ -1,3 +1,3 @@
|
||||
.card-title { color: var(--color-black-rgb); }
|
||||
.kanban-header-title .text-danger {color:rgb(255, 93, 93); opacity: 1;}
|
||||
.as-subtitle {color: rgb(139, 145, 162); opacity: 0.5; text-wrap: nowrap; font-weight: 700;}
|
||||
.as-subtitle {opacity: 0.5; text-wrap: nowrap; font-weight: 700;}
|
||||
|
||||
@@ -4,4 +4,4 @@
|
||||
.dropdown-menu .menu-divider a{display:none;}
|
||||
.dropdown-menu .menu-divider {border-top:1px solid #dedede;}
|
||||
.kanban-header-col-actions{top:unset;}
|
||||
.as-subtitle {color: rgb(139, 145, 162); opacity: 0.5; text-wrap: nowrap; font-weight: 700;}
|
||||
.as-subtitle {opacity: 0.5; text-wrap: nowrap; font-weight: 700;}
|
||||
|
||||
@@ -18,7 +18,7 @@ window.getCol = function(col)
|
||||
if(col.limit != -1 && cards > col.limit)
|
||||
{
|
||||
col.subtitleClass += ' text-danger';
|
||||
wip += ' <i class="icon icon-exclamation-sign"></i>';
|
||||
wip += ' <i class="icon icon-exclamation-sign" data-toggle="tooltip" data-title="' + kanbanLang.limitExceeded + '"></i>';
|
||||
}
|
||||
|
||||
col.subtitle = {html: wip};
|
||||
|
||||
@@ -108,7 +108,7 @@ window.getCol = function(col)
|
||||
if(col.limit != -1 && cards > col.limit)
|
||||
{
|
||||
col.subtitleClass += ' text-danger';
|
||||
wip += ' <i class="icon icon-exclamation-sign"></i>';
|
||||
wip += ' <i class="icon icon-exclamation-sign" data-toggle="tooltip" data-title="' + kanbanLang.limitExceeded + '"></i>';
|
||||
}
|
||||
|
||||
col.subtitle = {html: wip};
|
||||
|
||||
Reference in New Issue
Block a user