* Finish task #43190.

This commit is contained in:
tianshujie
2021-10-14 16:42:04 +08:00
parent d69aeae3b9
commit f0bd7efdef
2 changed files with 2 additions and 3 deletions

View File

@@ -4,4 +4,3 @@
td.padding-right {padding-right: 20px !important}
.c-program {width: 150px;}
td.c-progress {padding-left: 66px !important;}

View File

@@ -43,7 +43,7 @@
<th class="c-budget text-center"><?php echo $lang->project->budget;?></th>
<th class="c-number text-right"><?php echo $lang->project->estimate;?></th>
<th class="c-number text-right"><?php echo $lang->project->consume;?></th>
<th class="c-progress <?php if($config->systemMode == 'classic') echo 'text-center';?>"><?php echo $lang->project->progress;?></th>
<th class="c-progress"><?php echo $lang->project->progress;?></th>
</tr>
</thead>
<tbody>
@@ -82,7 +82,7 @@
<td title='<?php echo $budgetTitle;?>' class="text-ellipsis <?php echo $textStyle;?>"><?php echo $budgetTitle;?></td>
<td class="text-right" title="<?php echo $project->hours->totalEstimate . ' ' . $lang->execution->workHour;?>"><?php echo $project->hours->totalEstimate . $lang->execution->workHourUnit;?></td>
<td class="text-right" title="<?php echo $project->hours->totalConsumed . ' ' . $lang->execution->workHour;?>"><?php echo $project->hours->totalConsumed . $lang->execution->workHourUnit;?></td>
<td class="<?php if($config->systemMode == 'classic') echo 'c-progress';?>">
<td>
<div class='progress-pie' data-doughnut-size='90' data-color='#3CB371' data-value='<?php echo $project->hours->progress;?>' data-width='24' data-height='24' data-back-color='#e8edf3'>
<div class='progress-info'><?php echo $project->hours->progress;?></div>
</div>