summaryrefslogtreecommitdiffstats
path: root/templates
diff options
context:
space:
mode:
authorBernhard Posselt <nukeawhale@gmail.com>2013-04-11 16:01:10 +0200
committerBernhard Posselt <nukeawhale@gmail.com>2013-04-11 16:01:10 +0200
commit12f9f0be1f347ed7cfeca3afad6e4d612e6d4f60 (patch)
tree3739d1b935826eecd2b9d77d1b2bc7b1317ab454 /templates
parent80707aa9e3c2925b4ae995661013be622963c217 (diff)
added opml icons to export import button
Diffstat (limited to 'templates')
-rw-r--r--templates/part.listfeed.php2
-rw-r--r--templates/part.settings.php6
2 files changed, 5 insertions, 3 deletions
diff --git a/templates/part.listfeed.php b/templates/part.listfeed.php
index 118bdd0b8..42d291c61 100644
--- a/templates/part.listfeed.php
+++ b/templates/part.listfeed.php
@@ -26,7 +26,7 @@
{{ feed.title }}
</a>
- <span class="utils">
+ <span class="utils" ng-hide="feed.error">
<span class="unread-counter">
{{ feedBl.getUnreadCount(feed.id) }}
diff --git a/templates/part.settings.php b/templates/part.settings.php
index 38c51933f..436a575eb 100644
--- a/templates/part.settings.php
+++ b/templates/part.settings.php
@@ -3,11 +3,13 @@
<input type="file" id="opml-upload" name="import"
oc-read-file="import($fileContent)"/>
<button title="<?php p($l->t('Import')); ?>"
- oc-forward-click="{selector:'#opml-upload'}">
+ oc-forward-click="{selector:'#opml-upload'}"
+ class="opml-icon">
<?php p($l->t('Import')); ?>
</button>
<button ng-disabled="feeds.length==0" title="<?php p($l->t('Export')); ?>"
- ng-click="export()">
+ ng-click="export()"
+ class="opml-icon">
<?php p($l->t('Export')); ?>
</button>
</fieldset>