summaryrefslogtreecommitdiffstats
path: root/apps/files/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/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/templates')
-rw-r--r--apps/files/templates/list.php10
1 files changed, 4 insertions, 6 deletions
diff --git a/apps/files/templates/list.php b/apps/files/templates/list.php
index ea3e6c61d4a..29769bcd825 100644
--- a/apps/files/templates/list.php
+++ b/apps/files/templates/list.php
@@ -52,9 +52,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="download">
- <img class="svg" alt=""
- src="<?php print_unescaped(image_path("core", "actions/download.svg")); ?>" />
- <?php p($l->t('Download'))?>
+ <span class="icon icon-download"></span>
+ <span><?php p($l->t('Download'))?></span>
</a>
</span>
</div>
@@ -65,9 +64,8 @@
<th id="headerDate" class="hidden column-mtime">
<a id="modified" class="columntitle" data-sort="mtime"><span><?php p($l->t( 'Modified' )); ?></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>
</tr>