diff --git a/module/task/config.php b/module/task/config.php
index b458e3a55e..59c3749d7b 100644
--- a/module/task/config.php
+++ b/module/task/config.php
@@ -99,7 +99,7 @@ $config->task->datatable->fieldList['finishedBy']['required'] = 'no';
$config->task->datatable->fieldList['deadline']['title'] = 'deadlineAB';
$config->task->datatable->fieldList['deadline']['fixed'] = 'no';
-$config->task->datatable->fieldList['deadline']['width'] = '65';
+$config->task->datatable->fieldList['deadline']['width'] = '70';
$config->task->datatable->fieldList['deadline']['required'] = 'no';
$config->task->datatable->fieldList['deadline']['control'] = 'date';
diff --git a/module/user/css/task.css b/module/user/css/task.css
index fd9b0be634..d305d64b16 100644
--- a/module/user/css/task.css
+++ b/module/user/css/task.css
@@ -1,2 +1,4 @@
.hours {white-space: nowrap; overflow: hidden; text-overflow: ellipsis; text-align: right;}
-td.deadline > span {padding-left: 4px;}
+.c-execution {width: 180px;}
+.c-hour, .c-status {width: 70px;}
+.c-deadline {width: 100px;}
diff --git a/module/user/view/task.html.php b/module/user/view/task.html.php
index 35415f54f6..8981fb14e0 100644
--- a/module/user/view/task.html.php
+++ b/module/user/view/task.html.php
@@ -41,15 +41,15 @@
id}&type=$type&orderBy=%s&recTotal={$pager->recTotal}&recPerPage={$pager->recPerPage}&pageID={$pager->pageID}"; ?>
- idAB);?>
- priAB);?>
- task->execution);?>
+ idAB);?>
+ priAB);?>
+ task->execution);?>
task->name);?>
- task->estimateAB);?>
- task->consumedAB);?>
- task->leftAB);?>
- task->deadlineAB);?>
- statusAB);?>
+ task->estimateAB);?>
+ task->consumedAB);?>
+ task->leftAB);?>
+ task->deadlineAB);?>
+ statusAB);?>
@@ -57,7 +57,7 @@
createLink('task', 'view', "taskID=$task->id"), sprintf('%03d', $task->id));?>
task->priList, $task->pri, $task->pri);?>
- createLink('execution', 'browse', "executionID=$task->executionID"), $task->executionName);?>
+ createLink('execution', 'browse', "executionID=$task->executionID"), $task->executionName);?>
team)) echo '' . $this->lang->task->multipleAB . ' ';?>
parent > 0) echo '' . $this->lang->task->childrenAB . ' ';?>
@@ -65,12 +65,12 @@
$onlybody = $task->executionType == 'kanban' ? true : '';
$class = $task->executionType == 'kanban' ? 'iframe' : '';
?>
- createLink('task', 'view', "taskID=$task->id", '', $onlybody, $task->project), $task->name, null, "class='$class' data-width='80%' style='color: $task->color'");?>
+ createLink('task', 'view', "taskID=$task->id", '', $onlybody, $task->project), $task->name, null, "class='$class' data-width='80%' style='color: $task->color' title='$task->name'");?>
estimate . $lang->execution->workHourUnit;?>
consumed . $lang->execution->workHourUnit;?>
left . $lang->execution->workHourUnit;?>
- deadline, 0, 4) > 0) echo '' . $task->deadline . '';?>
+ deadline, 0, 4) > 0) echo '' . $task->deadline . '';?>
processStatus('task', $task);?>
diff --git a/www/theme/default/style.css b/www/theme/default/style.css
index 782a5db3f2..6fba6a44b2 100644
--- a/www/theme/default/style.css
+++ b/www/theme/default/style.css
@@ -139,4 +139,4 @@ body.xxc-embed.m-productplan-view,body.xxc-embed.m-bug-browse,body.xxc-embed.m-p
#projectForm .c-name,
#executionTableList .c-name,
#programTableList .c-name {padding-right: 64px;}
-td.delayed > span {display: block; height: 20px; line-height: 20px; background: #FFEBEB; color: #FB2B2B; border-radius: 20px;}
+td.delayed > span {display: inline-block; height: 20px; line-height: 18px; background: #FFEBEB; color: #FB2B2B; border-radius: 20px; padding: 2px 8px;}