* code for new style.

This commit is contained in:
wangyidong
2018-01-26 15:11:14 +08:00
parent f90925b51e
commit eb11984ef8
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -15,7 +15,7 @@
<?php $projectboxId = 'projectbox-' . rand(); ?>
<?php $longBlock = $block->grid >= 6;?>
<div id='<?php echo $projectboxId ?>'>
<table class='table table-borderless table-hover table-fixed block-project'>
<table class='table table-borderless table-hover table-fixed block-projects'>
<thead>
<tr class='text-center'>
<th class='text-left'><?php echo $lang->project->name;?></th>
@@ -53,7 +53,7 @@
<td><?php echo $project->hours->totalLeft;?></td>
<?php endif;?>
<td>
<div class="progress-text-left">
<div class="progress progress-text-left">
<div class="progress-bar progress-bar-success" role="progressbar" aria-valuenow="<?php echo $project->hours->progress;?>" aria-valuemin="0" aria-valuemax="100" style="width: <?php echo $project->hours->progress;?>%">
<span class="progress-text"><?php echo $project->hours->progress;?>%</span>
</div>
+1 -1
View File
@@ -515,7 +515,7 @@ class commonModel extends model
}
foreach($position as $key => $link)
{
echo '<li>' . $link . '</li>';
echo "<li class='active'>" . $link . '</li>';
}
echo '</ul>';
}