summaryrefslogtreecommitdiffstats
path: root/install/ui/src/freeipa/association.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/association.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/association.js')
-rw-r--r--install/ui/src/freeipa/association.js16
1 files changed, 8 insertions, 8 deletions
diff --git a/install/ui/src/freeipa/association.js b/install/ui/src/freeipa/association.js
index f976d58e4..685821e0a 100644
--- a/install/ui/src/freeipa/association.js
+++ b/install/ui/src/freeipa/association.js
@@ -484,7 +484,7 @@ IPA.association_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')) {
@@ -497,7 +497,7 @@ IPA.association_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();
@@ -887,17 +887,17 @@ exp.association_facet_pre_op = function(spec, context) {
{
name: 'refresh',
label: '@i18n:buttons.refresh',
- icon: 'reset-icon'
+ icon: 'fa-refresh'
},
{
name: 'remove',
label: '@i18n:buttons.remove',
- icon: 'remove-icon'
+ icon: 'fa-trash-o'
},
{
name: 'add',
label: '@i18n:buttons.add',
- icon: 'add-icon'
+ icon: 'fa-plus'
});
spec.state = spec.state || {};
@@ -1312,17 +1312,17 @@ exp.attribute_facet_pre_op = function(spec, context) {
{
name: 'refresh',
label: '@i18n:buttons.refresh',
- icon: 'reset-icon'
+ icon: 'fa-refresh'
},
{
name: 'remove',
label: '@i18n:buttons.remove',
- icon: 'remove-icon'
+ icon: 'fa-trash-o'
},
{
name: 'add',
label: '@i18n:buttons.add',
- icon: 'add-icon'
+ icon: 'fa-plus'
});
spec.state = spec.state || {};