diff options
Diffstat (limited to 'apps/files_trashbin/templates/index.php')
-rw-r--r-- | apps/files_trashbin/templates/index.php | 10 |
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> |