Underline the current assignee instead of a star icon

This commit is contained in:
Frédéric Guillot 2014-12-28 17:07:03 -05:00
parent 7b97c50569
commit cbac410efa
3 changed files with 20 additions and 5 deletions

View File

@ -48,12 +48,9 @@
</span>
<?php endif ?>
&nbsp;-&nbsp;
<span class="task-board-user">
<span class="task-board-user <?= $this->acl->isCurrentUser($task['owner_id']) ? 'task-board-current-user' : '' ?>">
<?= $this->a(
(! empty($task['owner_id']) ? t('Assigned to %s', $task['assignee_name'] ?: $task['assignee_username']) : t('Nobody assigned')) .
( $this->acl->isCurrentUser($task['owner_id']) ? '&nbsp;<i class="fa fa-star"></i>' : ''),
(! empty($task['owner_id']) ? t('Assigned to %s', $task['assignee_name'] ?: $task['assignee_username']) : t('Nobody assigned')),
'board',
'changeAssignee',
array('task_id' => $task['id']),

View File

@ -812,6 +812,15 @@ div.task-board-recent {
font-size: 80%;
}
.task-board-current-user a {
text-decoration: underline;
}
.task-board-current-user a:focus,
.task-board-current-user a:hover {
text-decoration: none;
}
a.task-board-nobody {
font-weight: normal;
font-style: italic;

View File

@ -40,6 +40,15 @@ div.task-board-recent {
font-size: 80%;
}
.task-board-current-user a {
text-decoration: underline;
}
.task-board-current-user a:focus,
.task-board-current-user a:hover {
text-decoration: none;
}
a.task-board-nobody {
font-weight: normal;
font-style: italic;