summaryrefslogtreecommitdiffstats
path: root/templates
diff options
context:
space:
mode:
authorBernhard Posselt <nukeawhale@gmail.com>2013-04-15 11:11:20 +0200
committerBernhard Posselt <nukeawhale@gmail.com>2013-04-15 11:11:20 +0200
commit8553c92dd9746d4c6d4390544bcb4c66167173ce (patch)
treeba5ab92f844b43555920749f6bd8d345e399dfd8 /templates
parent516063c1e1d1d8a85dca7b670e279f71c5685848 (diff)
remove opacity for feedcounter, fix #57
Diffstat (limited to 'templates')
-rw-r--r--templates/part.feed.unread.php3
-rw-r--r--templates/part.listfeed.php3
-rw-r--r--templates/part.listfolder.php3
3 files changed, 3 insertions, 6 deletions
diff --git a/templates/part.feed.unread.php b/templates/part.feed.unread.php
index cf130228c..67c57e369 100644
--- a/templates/part.feed.unread.php
+++ b/templates/part.feed.unread.php
@@ -16,8 +16,7 @@
<?php p($l->t('All articles'))?>
</a>
<span class="utils">
- <span class="unread-counter"
- ng-style="{opacity: getOpacity(subscriptionsBl.getUnreadCount()) }">
+ <span class="unread-counter">
{{ subscriptionsBl.getUnreadCount() }}
</span>
<button class="svg action mark-read-icon"
diff --git a/templates/part.listfeed.php b/templates/part.listfeed.php
index 064092de5..4ad3fc73c 100644
--- a/templates/part.listfeed.php
+++ b/templates/part.listfeed.php
@@ -29,8 +29,7 @@
<span class="utils">
<span class="unread-counter"
- ng-show="feed.id"
- ng-style="{opacity: getOpacity(feedBl.getUnreadCount(feed.id)) }">
+ ng-show="feed.id">
{{ feedBl.getUnreadCount(feed.id) }}
</span>
diff --git a/templates/part.listfolder.php b/templates/part.listfolder.php
index 9d0cfe6ac..4e43bf579 100644
--- a/templates/part.listfolder.php
+++ b/templates/part.listfolder.php
@@ -30,8 +30,7 @@
class="svg action delete-icon"
title="<?php p($l->t('Delete folder')); ?>"></button>
- <span class="unread-counter"
- ng-style="{ opacity: getOpacity(folderBl.getUnreadCount(folder.id)) }">
+ <span class="unread-counter">
{{ folderBl.getUnreadCount(folder.id) }}
</span>