Updated some more font awesome icons for v5

This commit is contained in:
Neel Patel
2020-08-21 14:15:18 +05:30
committed by Akshay Joshi
parent 19491d79a5
commit b53de0c31d
8 changed files with 9 additions and 9 deletions

View File

@@ -147,7 +147,7 @@ define('pgadmin.browser.node', [
data: {
'url': 'drop',
},
icon: 'fa fa-trash',
icon: 'fa fa-trash-alt',
enable: _.isFunction(self.canDrop) ?
function() {
return !!(self.canDrop.apply(self, arguments));
@@ -166,7 +166,7 @@ define('pgadmin.browser.node', [
data: {
'url': 'delete',
},
icon: 'fa fa-trash',
icon: 'fa fa-trash-alt',
enable: _.isFunction(self.canDropCascade) ?
function() {
return self.canDropCascade.apply(self, arguments);

View File

@@ -41,7 +41,7 @@ define([
let $unselectAll = $([
'<button class="btn btn-secondary btn-sm" type="button"',
' style="width: 49%;margin: 0 0.5%;">',
'<i class="fa fa-square-o"></i><span style="padding: 0px 5px;" role="img">',
'<i class="fa fa-square"></i><span style="padding: 0px 5px;" role="img">',
gettext('Unselect All'),
'</span></button>',
].join(''));