Fix regression (css)

This commit is contained in:
Frederic Guillot 2015-09-26 19:56:51 -04:00
parent 16e14b76a6
commit 625a84d174
4 changed files with 5 additions and 8 deletions

View File

@ -9,10 +9,11 @@
data-task-url="<?= $this->url->href('task', 'show', array('task_id' => $task['id'], 'project_id' => $task['project_id'])) ?>">
<div class="task-board-sort-handle" style="display: none;"><i class="fa fa-arrows-alt"></i></div>
<?= $this->render('board/task_menu', array('task' => $task)) ?>
<?php if ($this->board->isCollapsed($task['project_id'])): ?>
<div class="task-board-collapsed">
<?= $this->render('board/task_menu', array('task' => $task)) ?>
<?php if (! empty($task['assignee_username'])): ?>
<span title="<?= $this->e($task['assignee_name'] ?: $task['assignee_username']) ?>">
<?= $this->e($this->user->getInitials($task['assignee_name'] ?: $task['assignee_username'])) ?>
@ -22,6 +23,7 @@
</div>
<?php else: ?>
<div class="task-board-expanded">
<?= $this->render('board/task_menu', array('task' => $task)) ?>
<?php if ($task['reference']): ?>
<span class="task-board-reference" title="<?= t('Reference') ?>">

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -31,10 +31,6 @@ div.task-board-status-closed {
text-decoration: underline;
}
.task-board-expanded {
display: inline;
}
.task-board-collapsed {
overflow: hidden;
white-space: nowrap;
@ -47,7 +43,6 @@ a.task-board-collapsed-title {
}
.task-board .dropdown {
margin-right: 5px;
font-size: 1.1em;
}