The bookmark link is now a star icon
This commit is contained in:
parent
97b45bebe5
commit
dafa3c9a4c
@ -548,6 +548,11 @@ span.downloading img {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.item .infos a.bookmark-icon {
|
||||
color: #333;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
/* other pages */
|
||||
section li {
|
||||
margin-left: 15px;
|
||||
|
@ -23,7 +23,7 @@
|
||||
<article>
|
||||
<h2 class="<?= (! $feed['enabled']) ? 'feed-disabled' : '' ?>">
|
||||
<?php if (! $feed['enabled']): ?>
|
||||
<span title="<?= t('Subscription disabled') ?>">∅</a>
|
||||
<span title="<?= t('Subscription disabled') ?>">✖</a>
|
||||
<?php else: ?>
|
||||
<span id="loading-feed-<?= $feed['id'] ?>"></span>
|
||||
<?php endif ?>
|
||||
|
@ -11,15 +11,16 @@
|
||||
</h1>
|
||||
|
||||
<p class="infos">
|
||||
<a href="?action=feed-items&feed_id=<?= $feed['id'] ?>"><?= Helper\escape($feed['title']) ?></a> |
|
||||
<span class="hide-mobile"><?= dt('%e %B %Y - %k:%M', $item['updated']) ?> |</span>
|
||||
|
||||
<?php if ($item['bookmark']): ?>
|
||||
<a href="?action=bookmark&value=0&id=<?= $item['id'] ?>&source=show&menu=<?= $menu ?>"><?= t('remove bookmark') ?></a>
|
||||
<a href="?action=bookmark&value=0&id=<?= $item['id'] ?>&source=show&menu=<?= $menu ?>" title="<?= t('remove bookmark') ?>" class="bookmark-icon">★</a>
|
||||
<?php else: ?>
|
||||
<a href="?action=bookmark&value=1&id=<?= $item['id'] ?>&source=show&menu=<?= $menu ?>"><?= t('bookmark') ?></a>
|
||||
<a href="?action=bookmark&value=1&id=<?= $item['id'] ?>&source=show&menu=<?= $menu ?>" title="<?= t('bookmark') ?>" class="bookmark-icon">☆</a>
|
||||
<?php endif ?> |
|
||||
|
||||
<a href="?action=feed-items&feed_id=<?= $feed['id'] ?>"><?= Helper\escape($feed['title']) ?></a> |
|
||||
|
||||
<span class="hide-mobile"><?= dt('%e %B %Y - %k:%M', $item['updated']) ?> |</span>
|
||||
|
||||
<span id="download-item"
|
||||
data-item-id="<?= $item['id'] ?>"
|
||||
data-failure-message="<?= t('unable to fetch content') ?>"
|
||||
|
Loading…
Reference in New Issue
Block a user