Show tasks that are due today in a different color
I chose a "Triadic" color from this page, http://www.colorhexa.com/d90000 it seems to look good under various categories. Fix #2285
This commit is contained in:
@@ -27,7 +27,11 @@
|
||||
<?php endif ?>
|
||||
|
||||
<?php if (! empty($task['date_due'])): ?>
|
||||
<span class="task-board-date <?= time() > $task['date_due'] ? 'task-board-date-overdue' : '' ?>">
|
||||
<?php if (date('d') == date('d', $task['date_due'])): ?>
|
||||
<span class="task-board-date task-board-date-today">
|
||||
<?php elseif (time() > $task['date_due']): ?>
|
||||
<span class="task-board-date task-board-date-overdue">
|
||||
<?php endif ?>
|
||||
<i class="fa fa-calendar"></i>
|
||||
<?= $this->dt->date($task['date_due']) ?>
|
||||
</span>
|
||||
|
||||
Reference in New Issue
Block a user