*Finish task #7587.

This commit is contained in:
tianshujie98
2020-08-05 17:04:47 +08:00
parent ae1a3396ba
commit a99aab00ea
16 changed files with 23 additions and 18 deletions
+2 -2
View File
@@ -68,14 +68,14 @@
<?php foreach($dateGroups as $date => $actions):?>
<?php $isToday = date(DT_DATE4) == $date;?>
<div class="dynamic <?php if($isToday) echo 'active';?>">
<div class="dynamic-date">
<div class="dynamic-date <?php if($type == 'all') echo 'w-200px';?>">
<?php if($isToday):?>
<span class="date-label"><?php echo $lang->action->dynamic->today;?></span>
<?php endif;?>
<span class="date-text"><?php echo $date;?></span>
<button type="button" class="btn btn-info btn-icon btn-sm dynamic-btn"><i class="icon icon-caret-down"></i></button>
</div>
<ul class="timeline timeline-tag-left">
<ul class="timeline timeline-tag-left <?php if($type == 'all') echo 'margin-l-50px';?>">
<?php if($direction == 'next') $actions = array_reverse($actions);?>
<?php foreach($actions as $i => $action):?>
<?php if(empty($firstAction)) $firstAction = $action;?>