summaryrefslogtreecommitdiffstats
path: root/install/ui/src/freeipa/sudo.js
diff options
context:
space:
mode:
authorPetr Vobornik <pvoborni@redhat.com>2013-11-05 19:21:57 +0100
committerMartin Kosek <mkosek@redhat.com>2014-01-21 12:04:03 +0100
commitc4abe3a2d9741be55ee37f2d8857c4110d32f113 (patch)
tree8866ec4d5e06bca139176342e0c2bbff98c15ea4 /install/ui/src/freeipa/sudo.js
parent4bc1942f53bad0168f0a41d5783f038cf704873d (diff)
downloadfreeipa-c4abe3a2d9741be55ee37f2d8857c4110d32f113.tar.gz
freeipa-c4abe3a2d9741be55ee37f2d8857c4110d32f113.tar.xz
freeipa-c4abe3a2d9741be55ee37f2d8857c4110d32f113.zip
Replace icons with the ones from Font Awesome
https://fedorahosted.org/freeipa/ticket/3904
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();