summaryrefslogtreecommitdiffstats
path: root/install/ui/src/freeipa/sudo.js
diff options
context:
space:
mode:
Diffstat (limited to 'install/ui/src/freeipa/sudo.js')
-rw-r--r--install/ui/src/freeipa/sudo.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/install/ui/src/freeipa/sudo.js b/install/ui/src/freeipa/sudo.js
index e50615bd7..17e55b08d 100644
--- a/install/ui/src/freeipa/sudo.js
+++ b/install/ui/src/freeipa/sudo.js
@@ -61,12 +61,12 @@ var spec = {
{
name: 'disable',
label: '@i18n:buttons.disable',
- icon: 'disabled-icon'
+ icon: 'fa-minus'
},
{
name: 'enable',
label: '@i18n:buttons.enable',
- icon: 'enabled-icon'
+ icon: 'fa-check'
}
]
},
@@ -705,7 +705,7 @@ IPA.sudo.options_section = 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')) {
@@ -718,7 +718,7 @@ IPA.sudo.options_section = 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();