summaryrefslogtreecommitdiffstats
path: root/core/js
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 /core/js
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 'core/js')
-rw-r--r--core/js/sharedialogshareelistview.js3
1 files changed, 1 insertions, 2 deletions
diff --git a/core/js/sharedialogshareelistview.js b/core/js/sharedialogshareelistview.js
index e8976bb26e6..49580cc888b 100644
--- a/core/js/sharedialogshareelistview.js
+++ b/core/js/sharedialogshareelistview.js
@@ -17,7 +17,7 @@
'<ul id="shareWithList" class="shareWithList">' +
'{{#each sharees}}' +
' <li data-share-id="{{shareId}}" data-share-type="{{shareType}}" data-share-with="{{shareWith}}">' +
- ' <a href="#" class="unshare"><span class="icon-loading-small hidden"></span><img class="svg" alt="{{unshareLabel}}" title="{{unshareLabel}}" src="{{unshareImage}}" /></a>' +
+ ' <a href="#" class="unshare"><span class="icon-loading-small hidden"></span><span class="icon icon-delete"></span><span class="hidden-visually">{{unshareLabel}}</span></a>' +
' {{#if avatarEnabled}}' +
' <div class="avatar {{#if modSeed}}imageplaceholderseed{{/if}}" data-username="{{shareWith}}" {{#if modSeed}}data-seed="{{shareWith}} {{shareType}}"{{/if}}></div>' +
' {{/if}}' +
@@ -140,7 +140,6 @@
mailNotificationEnabled: this.configModel.isMailNotificationEnabled(),
notifyByMailLabel: t('core', 'notify by email'),
unshareLabel: t('core', 'Unshare'),
- unshareImage: OC.imagePath('core', 'actions/delete'),
canShareLabel: t('core', 'can share'),
canEditLabel: t('core', 'can edit'),
createPermissionLabel: t('core', 'create'),