* Finish task #41738.

This commit is contained in:
sgm0422
2021-08-27 13:23:45 +08:00
parent c8a961b99d
commit 89328862e8
3 changed files with 9 additions and 9 deletions
+4 -4
View File
@@ -2433,8 +2433,8 @@ EOD;
/* If homeMenu is not exists or unset, display menu. */
if(!isset($lang->$openApp->homeMenu))
{
$lang->menu = $lang->$openApp->menu;
$lang->menuOrder = $lang->$openApp->menuOrder;
$lang->menu = isset($lang->$openApp->menu) ? $lang->$openApp->menu : array();
$lang->menuOrder = isset($lang->$openApp->menuOrder) ? $lang->$openApp->menuOrder : array();
return;
}
@@ -2465,8 +2465,8 @@ EOD;
}
/* Default, display menu. */
$lang->menu = $lang->$openApp->menu;
$lang->menuOrder = $lang->$openApp->menuOrder;
$lang->menu = isset($lang->$openApp->menu) ? $lang->$openApp->menu : array();
$lang->menuOrder = isset($lang->$openApp->menuOrder) ? $lang->$openApp->menuOrder : array();
}
/**
+4 -4
View File
@@ -1,7 +1,7 @@
.main-table .table {cursor: default;}
.main-table .table td {background: #f5f5f5;}
.lane-name {overflow: hidden; text-overflow: ellipsis}
.lane-name {overflow: hidden; text-overflow: ellipsis; writing-mode: vertical-lr;}
.board-item {border: 1px solid #EBEBEB; padding: 5px 10px; cursor: default; border-radius: 2px; background-color: #fff;}
.board-item:hover {border-color: #ccc;}
@@ -9,9 +9,9 @@
#kanban {overflow-y: auto;}
#kanban tbody > tr > td {line-height: 24px;}
#kanban tbody > tr > td{border-right: 3px solid #fff; border-bottom: 3px solid #fff;}
#kanban thead > tr:first-child > th:not(:first-child) {border-right: 3px solid #fff; border-bottom: 3px solid #fff;}
#kanban thead > tr:last-child > th {border: 3px solid #fff;}
#kanban tbody > tr > td{border-right: 3px solid #fff; border-bottom: 2px solid #fff;}
#kanban thead > tr:first-child > th:not(:first-child) {border-right: 2px solid #fff; border-bottom: 2px solid #fff;}
#kanban thead > tr:last-child > th {border: 2px solid #fff;}
.doing-td, .wait-project, .normal-plan, .normal-release {vertical-align: top !important;}
+1 -1
View File
@@ -17,7 +17,7 @@
<div class='detail'>
<div class='detail-title'><?php echo $lang->program->kanban->typeList[$type];?></div>
<div class='detail-content'>
<table class="table no-margin table-grouped text-center" style='background: #f5f5f5;'>
<table class="table no-margin table-grouped text-center" style='background: #efefef;'>
<thead>
<tr>
<th rowspan='2' class='w-20px' style='background: #32C5FF; border-bottom: none'></th>