Show task count in each column even if no limit is set (merge pull-request #169)
This commit is contained in:
@@ -15,6 +15,10 @@
|
|||||||
<?= Helper\escape($column['task_limit']) ?>
|
<?= Helper\escape($column['task_limit']) ?>
|
||||||
)
|
)
|
||||||
</span>
|
</span>
|
||||||
|
<?php else: ?>
|
||||||
|
<span title="<?= t('Task count') ?>" class="task-count">
|
||||||
|
(<span id="task-number-column-<?= $column['id'] ?>"><?= count($column['tasks']) ?></span>)
|
||||||
|
</span>
|
||||||
<?php endif ?>
|
<?php endif ?>
|
||||||
</th>
|
</th>
|
||||||
<?php endforeach ?>
|
<?php endforeach ?>
|
||||||
|
|||||||
@@ -564,6 +564,11 @@ a.filter-on {
|
|||||||
line-height: 70%;
|
line-height: 70%;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.task-count {
|
||||||
|
color: #888;
|
||||||
|
font-weight: normal;
|
||||||
|
}
|
||||||
|
|
||||||
/* task inside the board */
|
/* task inside the board */
|
||||||
.task-board {
|
.task-board {
|
||||||
position: relative;
|
position: relative;
|
||||||
|
|||||||
Reference in New Issue
Block a user