* Finish task #5540.

This commit is contained in:
Yagami
2019-05-29 10:16:56 +08:00
parent e60e1e3d92
commit dfc0bd6913
2 changed files with 3 additions and 2 deletions
+1
View File
@@ -5,3 +5,4 @@
.block-release .panel-body {padding-bottom: 50px;}
.block-release .panel-body > .btn.pull-right {position: absolute; right: 20px; bottom: 20px;}
.col-4 .cell table td{word-wrap: break-word; word-break: normal;}
.release-line li .title{ overflow:hidden; text-overflow:ellipsis; white-space:nowrap}
+2 -2
View File
@@ -31,14 +31,14 @@
<?php if(isset($plan->begin)):?>
<li <?php if(date('Y-m-d') < $plan->begin) echo "class='active'";?>>
<a href="<?php echo $this->createLink('productplan', 'view', "planID={$plan->id}");?>">
<span class="title"><?php echo $plan->title;?></span>
<span class="title" title='<?php echo $plan->title;?>'><?php echo $plan->title;?></span>
<span class="date"><?php echo $plan->begin;?></span>
</a>
</li>
<?php else:?>
<li>
<a href="<?php echo $this->createLink('release', 'view', "releaseID={$plan->id}");?>">
<span class="title"><?php echo $plan->name;?></span>
<span class="title" title='<?php echo $plan->name;?>'><?php echo $plan->name;?></span>
<span class="date"><?php echo $plan->date;?></span>
</a>
</li>