Add an icon for read items inside the view feed-items
This commit is contained in:
parent
bd477be736
commit
b905de3a91
@ -449,6 +449,10 @@ nav .active a {
|
||||
color: #555;
|
||||
}
|
||||
|
||||
.items a.read {
|
||||
color: #666;
|
||||
}
|
||||
|
||||
/* item */
|
||||
.item {
|
||||
padding-left: 5px;
|
||||
|
@ -27,7 +27,11 @@
|
||||
href="?action=show&menu=feed-items&id=<?= $item['id'] ?>"
|
||||
data-item-id="<?= $item['id'] ?>"
|
||||
id="open-<?= $item['id'] ?>"
|
||||
<?= $item['status'] === 'read' ? 'class="read"' : '' ?>
|
||||
>
|
||||
<?php if ($item['status'] === 'read'): ?>
|
||||
☑
|
||||
<?php endif ?>
|
||||
<?= Helper\escape($item['title']) ?>
|
||||
</a>
|
||||
</h2>
|
||||
|
Loading…
Reference in New Issue
Block a user