* Finish task#67693.
This commit is contained in:
@@ -3,10 +3,11 @@
|
||||
|
||||
#burnWrapper {max-width: 400px; margin: 0 auto; padding: 8px; position: relative;}
|
||||
#burnYUnit {position: absolute; color: #CBD0DB; top: -10px; left: 10px;}
|
||||
#burnLegend {position: absolute; right: 0; width: 80px; height: 40px; top: 0; margin-top: -20px; line-height: 20px; color: #838A9D; font-size: 12px;}
|
||||
#burnLegend > div {position: relative; padding-left: 30px;}
|
||||
#burnLegend {position: absolute; right: 0; width: 150px; top: 0; margin-top: -20px; line-height: 20px; color: #838A9D; font-size: 12px;}
|
||||
#burnLegend > div {position: relative; padding-left: 22px;}
|
||||
#burnLegend > div:before {content: ' '; display: block; position: absolute; width: 20px; left: 0; top: 8px; height: 2px; background: #EEEEEE;}
|
||||
#burnLegend > div.line-real:before {background: #006AF1;}
|
||||
#burnLegend > div.line-delay:before {background: red;}
|
||||
|
||||
.block-dynamic .panel-body {height: 230px; overflow: auto; position: relative;}
|
||||
.block-team div.col-xs-6 {white-space: nowrap; overflow: hidden;}
|
||||
|
||||
@@ -24,7 +24,11 @@
|
||||
<div class="col-sm-6">
|
||||
<div class="panel block-burn" style="height: 280px">
|
||||
<div class="panel-heading">
|
||||
<div class="panel-title"><?php echo $execution->name . $lang->execution->burn;?></div>
|
||||
<div class="panel-title"><?php echo $execution->name . $lang->execution->burn;?>
|
||||
<?php if(isset($execution->delay)):?>
|
||||
<span class="label label-danger label-outline"><?php echo $lang->execution->delayed;?></span>
|
||||
<?php endif;?>
|
||||
</div>
|
||||
<?php if(common::hasPriv('execution', 'burn')):?>
|
||||
<nav class="panel-actions nav nav-default">
|
||||
<li><?php common::printLink('execution', 'burn', "executionID=$execution->id", '<i class="icon icon-more icon-sm"></i>', '', "title=$lang->more");?></li>
|
||||
@@ -38,9 +42,12 @@
|
||||
<canvas id="burnCanvas"></canvas>
|
||||
</div>
|
||||
<div id="burnYUnit">(<?php echo $lang->execution->workHour;?>)</div>
|
||||
<div id="burnLegend">
|
||||
<div class="line-ref"><?php echo $lang->execution->charts->burn->graph->reference;?></div>
|
||||
<div class="line-real"><?php echo $lang->execution->charts->burn->graph->actuality;?></div>
|
||||
<div id="burnLegend" class='table-row'>
|
||||
<div class="line-ref table-col"><?php echo $lang->execution->charts->burn->graph->reference;?></div>
|
||||
<div class="line-real table-col"><?php echo $lang->execution->charts->burn->graph->actuality;?></div>
|
||||
<?php if(isset($execution->delay)):?>
|
||||
<div class="line-delay table-col"><?php echo $lang->execution->charts->burn->graph->delay;?></div>
|
||||
<?php endif;?>
|
||||
</div>
|
||||
</div>
|
||||
<?php endif;?>
|
||||
|
||||
Reference in New Issue
Block a user