Change fa-copy to fa-files-o

This commit is contained in:
David Benqué 2020-11-19 20:16:04 +00:00
parent 20fc3032ba
commit a56b5f7cb4
3 changed files with 3 additions and 3 deletions

View File

@ -1051,7 +1051,7 @@
&.fa-hashtag { order: 10; }
&.fa-bookmark { order: 15; }
&.fa-upload { order: 20; }
&.fa-copy { order: 25; }
&.fa-files-o { order: 25; }
&.fa-download { order: 30; }
&.fa-print { order: 35; }
&.fa-trash { order: 40; }

View File

@ -611,7 +611,7 @@ define([
break;
case 'copy':
button = $('<button>', {
'class': 'fa fa-copy cp-toolbar-icon-import',
'class': 'fa fa-files-o cp-toolbar-icon-import',
}).append($('<span>', {'class': 'cp-toolbar-drawer-element'}).text(Messages.makeACopy));
button
.click(common.prepareFeedback(type))

View File

@ -89,7 +89,7 @@ define([
var faRename = 'fa-pencil';
var faColor = 'cptools-palette';
var faTrash = 'fa-trash';
var faCopy = 'fa-copy';
var faCopy = 'fa-files-o';
var faDelete = 'cptools-destroy';
var faAccess = 'fa-unlock-alt';
var faProperties = 'fa-info-circle';