* Finish task#42126.

This commit is contained in:
xieqiyu
2021-09-02 14:40:32 +08:00
parent 8088a0c285
commit 60369d8e64
2 changed files with 5 additions and 6 deletions
+3 -4
View File
@@ -9,11 +9,10 @@
.board-item + .board-item {margin-top: 10px;}
#kanban {overflow-y: auto;}
#kanban tbody > tr > td {line-height: 24px;}
#kanban tbody > tr > td {border-bottom: 2px solid #fff !important;}
#kanban thead > tr > th:not(:last-child) {border-right: 2px solid #efefef;}
#kanban tbody > tr > td.color-my {background-color: #F5F5F5; border-bottom: 5px solid #fff !important;}
#kanban tbody > tr > td.color-project {background-color: #F5F5F5;}
#kanban tbody > tr > td {line-height: 24px;}
#kanban tbody > tr > td {background-color: #F5F5F5;}
#kanban tbody > tr:not(:last-child) {border-bottom: 5px solid #fff !important;}
.s-doing .table-row .table-col:last-child, .c-progress {width: 30px;}
.table-row .table-col:first-child {overflow: hidden; text-overflow: ellipsis; white-space: nowrap;}
@@ -30,7 +30,7 @@
<?php $rowIndex = 0;?>
<?php foreach($kanbanGroup as $projectID => $executionList):?>
<tr>
<td class="board-project <?php echo empty($projectID) ? 'color-my' : 'color-project';?>">
<td class='board-project'>
<div data-id='<?php echo $projectID;?>'>
<div class='text-center text-ellipsis'>
<?php $projectTitle = empty($projectID) ? $lang->execution->myExecutions : zget($projects, $projectID);?>
@@ -38,7 +38,7 @@
</div>
</div>
</td>
<td class="c-boards no-padding text-left <?php echo empty($projectID) ? 'color-my' : 'color-project';?>" colspan='4'>
<td class='c-boards no-padding text-left' colspan='4'>
<div class="boards-wrapper">
<div class="boards">
<?php foreach($lang->execution->kanbanColType as $colStatus => $colName):?>