Move task complexity to the bottom
This commit is contained in:
parent
28a1461f65
commit
fc97378c83
|
|
@ -42,4 +42,8 @@
|
|||
<i class="fa fa-file-text-o"></i>
|
||||
</span>
|
||||
<?php endif ?>
|
||||
|
||||
<?php if ($task['score']): ?>
|
||||
<span class="task-score"><?= $this->e($task['score']) ?></span>
|
||||
<?php endif ?>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -31,10 +31,6 @@
|
|||
) ?>
|
||||
</span>
|
||||
|
||||
<?php if ($task['score']): ?>
|
||||
<span class="task-score"><?= $this->e($task['score']) ?></span>
|
||||
<?php endif ?>
|
||||
|
||||
<div class="task-board-days">
|
||||
<span title="<?= t('Task age in days')?>" class="task-days-age"><?= $this->getTaskAge($task['date_creation']) ?></span>
|
||||
<span title="<?= t('Days in this column')?>" class="task-days-incolumn"><?= $this->getTaskAge($task['date_moved']) ?></span>
|
||||
|
|
|
|||
|
|
@ -18,10 +18,6 @@
|
|||
<?php endif ?>
|
||||
</span>
|
||||
|
||||
<?php if ($task['score']): ?>
|
||||
<span class="task-score"><?= $this->e($task['score']) ?></span>
|
||||
<?php endif ?>
|
||||
|
||||
<div class="task-board-title">
|
||||
<?= $this->a($this->e($task['title']), 'task', 'readonly', array('task_id' => $task['id'], 'token' => $project['token'])) ?>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -954,16 +954,14 @@ span.task-board-date-overdue {
|
|||
/* task score */
|
||||
.task-score {
|
||||
font-weight: bold;
|
||||
position: absolute;
|
||||
}
|
||||
|
||||
.task-board .task-score {
|
||||
font-size: 1.6em;
|
||||
left: 2px;
|
||||
bottom: 0;
|
||||
font-size: 1.1em;
|
||||
}
|
||||
|
||||
.task-show-details .task-score {
|
||||
position: absolute;
|
||||
bottom: 5px;
|
||||
right: 5px;
|
||||
font-size: 2em;
|
||||
|
|
|
|||
|
|
@ -118,16 +118,14 @@ span.task-board-date-overdue {
|
|||
/* task score */
|
||||
.task-score {
|
||||
font-weight: bold;
|
||||
position: absolute;
|
||||
}
|
||||
|
||||
.task-board .task-score {
|
||||
font-size: 1.6em;
|
||||
left: 2px;
|
||||
bottom: 0;
|
||||
font-size: 1.1em;
|
||||
}
|
||||
|
||||
.task-show-details .task-score {
|
||||
position: absolute;
|
||||
bottom: 5px;
|
||||
right: 5px;
|
||||
font-size: 2em;
|
||||
|
|
|
|||
Loading…
Reference in New Issue