summaryrefslogtreecommitdiffstats
path: root/templates/part.feed.unread.php
diff options
context:
space:
mode:
Diffstat (limited to 'templates/part.feed.unread.php')
-rw-r--r--templates/part.feed.unread.php11
1 files changed, 5 insertions, 6 deletions
diff --git a/templates/part.feed.unread.php b/templates/part.feed.unread.php
index 795ef3c2d..559a96a90 100644
--- a/templates/part.feed.unread.php
+++ b/templates/part.feed.unread.php
@@ -1,20 +1,19 @@
<li ng-class="{
active: isFeedActive(feedType.Subscriptions, 0),
- all_read: getUnreadCount(feedType.Subscriptions, 0)==0
+ unread: getUnreadCount(feedType.Subscriptions, 0)!=0
}"
- class="subscriptions"
ng-show="isShown(feedType.Subscriptions, 0)">
- <a class="title"
+ <a class="rss-icon"
href="#"
ng-click="loadFeed(feedType.Subscriptions, 0)">
<?php p($l->t('New articles'))?>
</a>
<span class="utils">
- <span class="unread-counter">
- {{ getUnreadCount(feedType.Starred, 0) }}
- </span>
<button class="svg action mark-read-icon"
ng-click="markAllRead(feedType.Subscriptions, 0)"
title="<?php p($l->t('Mark all read')) ?>"></button>
+ <span class="unread-counter">
+ {{ getUnreadCount(feedType.Subscriptions, 0) }}
+ </span>
</span>
</li> \ No newline at end of file