This commit is contained in:
caoyanyi
2023-02-28 13:27:47 +08:00
parent c82f1a02a7
commit d6fe7e5e79
5 changed files with 4 additions and 2 deletions
+2
View File
@@ -7,3 +7,5 @@
.table-import {padding: 6px 5px 5px 5px; }
.shadow-sm {box-shadow: 0 1px 1px rgb(0 0 0 / 5%), 0 2px 6px 0 rgb(0 0 0 / 25%)}
.flex-center {display: flex; align-items: center; justify-content: center;}
.c-desc {width: 280px;}
p.c-desc {white-space: nowrap; margin-bottom: 0; text-overflow: clip; overflow: hidden;}
View File
View File
+2 -2
View File
@@ -41,7 +41,7 @@
<th class='c-name'><?php echo $lang->holiday->name;?></th>
<th class='c-time-limit'><?php echo $lang->holiday->holiday;?></th>
<th class='c-status'><?php echo $lang->holiday->type;?></th>
<th class='c-object'><?php echo $lang->holiday->desc;?></th>
<th class='c-desc'><?php echo $lang->holiday->desc;?></th>
<th class='c-actions-2'><?php echo $lang->actions;?></th>
</tr>
</thead>
@@ -51,7 +51,7 @@
<td><?php echo $holiday->name;?></td>
<td><?php echo formatTime($holiday->begin, DT_DATE1) . ' ~ ' . formatTime($holiday->end, DT_DATE1);?></td>
<td><?php echo zget($lang->holiday->typeList, $holiday->type);?></td>
<td><?php echo $holiday->desc;?></td>
<td><p class='c-desc'><?php echo $holiday->desc;?></p></td>
<td class=" c-actions">
<?php common::printIcon('holiday', 'edit', "id=$holiday->id", $holiday, 'list', '', '', 'iframe', 'yes');?>
<?php common::printIcon('holiday', 'delete', "id=$holiday->id", $holiday, 'list', '', 'hiddenwin');?>
View File