summaryrefslogtreecommitdiffstats
path: root/apps/files_trashbin/templates
diff options
context:
space:
mode:
authorVincent Petry <pvince81@owncloud.com>2016-02-25 17:23:32 +0100
committerMorris Jobke <hey@morrisjobke.de>2016-02-25 23:01:07 +0100
commitb634f1e2c70809a4fde7f738cb7c252b6fc3f4dc (patch)
treeb2571dd30f629fdf588bcb2880bb57d76c37ddb5 /apps/files_trashbin/templates
parentc767030f071ec8f8ec08f41cf245222035de080d (diff)
downloadnextcloud-server-b634f1e2c70809a4fde7f738cb7c252b6fc3f4dc.tar.gz
nextcloud-server-b634f1e2c70809a4fde7f738cb7c252b6fc3f4dc.zip
Make more action icons themable + style fixes
Action icons now appear properly in public link page. More actions are now CSS icons.
Diffstat (limited to 'apps/files_trashbin/templates')
-rw-r--r--apps/files_trashbin/templates/index.php10
1 files changed, 4 insertions, 6 deletions
diff --git a/apps/files_trashbin/templates/index.php b/apps/files_trashbin/templates/index.php
index a7c1df93af2..9ea8a9d14c4 100644
--- a/apps/files_trashbin/templates/index.php
+++ b/apps/files_trashbin/templates/index.php
@@ -30,9 +30,8 @@
<a class="name sort columntitle" data-sort="name"><span><?php p($l->t( 'Name' )); ?></span><span class="sort-indicator"></span></a>
<span id="selectedActionsList" class='selectedActions'>
<a href="" class="undelete">
- <img class="svg" alt=""
- src="<?php print_unescaped(image_path("core", "actions/history.svg")); ?>" />
- <?php p($l->t('Restore'))?>
+ <span class="icon icon-history"></span>
+ <span><?php p($l->t('Restore'))?></span>
</a>
</span>
</div>
@@ -41,9 +40,8 @@
<a id="modified" class="columntitle" data-sort="mtime"><span><?php p($l->t( 'Deleted' )); ?></span><span class="sort-indicator"></span></a>
<span class="selectedActions">
<a href="" class="delete-selected">
- <?php p($l->t('Delete'))?>
- <img class="svg" alt=""
- src="<?php print_unescaped(image_path("core", "actions/delete.svg")); ?>" />
+ <span><?php p($l->t('Delete'))?></span>
+ <span class="icon icon-delete"></span>
</a>
</span>
</th>