diff options
Diffstat (limited to 'install/ui/src/freeipa/dns.js')
-rw-r--r-- | install/ui/src/freeipa/dns.js | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/install/ui/src/freeipa/dns.js b/install/ui/src/freeipa/dns.js index ab88cec4..3ef5620f 100644 --- a/install/ui/src/freeipa/dns.js +++ b/install/ui/src/freeipa/dns.js @@ -119,12 +119,12 @@ return { { name: 'disable', label: '@i18n:buttons.disable', - icon: 'disabled-icon' + icon: 'fa-minus' }, { name: 'enable', label: '@i18n:buttons.enable', - icon: 'enabled-icon' + icon: 'fa-check' } ] }, @@ -1674,7 +1674,7 @@ IPA.dns.record_type_table_widget = function(spec) { that.remove_button = IPA.action_button({ name: 'remove', label: '@i18n:buttons.remove', - icon: 'remove-icon', + icon: 'fa-trash-o', 'class': 'action-button-disabled', click: function() { if (!that.remove_button.hasClass('action-button-disabled')) { @@ -1687,7 +1687,7 @@ IPA.dns.record_type_table_widget = function(spec) { that.add_button = IPA.action_button({ name: 'add', label: '@i18n:buttons.add', - icon: 'add-icon', + icon: 'fa-plus', click: function() { if (!that.add_button.hasClass('action-button-disabled')) { that.add_handler(); |