diff options
author | kylebaker <kylebaker@dhcp-100-2-212.bos.redhat.com> | 2011-06-21 11:58:26 -0400 |
---|---|---|
committer | Endi S. Dewata <edewata@redhat.com> | 2011-06-23 19:30:00 +0000 |
commit | 3d9fb938d9ce1ed63619a8f130eba684af35be63 (patch) | |
tree | 563de50cdd9573212cb5cc70a9aad7d947e8800d /install/ui/association.js | |
parent | 545ecf94ef2db99edbdc376b39df86fe248eed31 (diff) | |
download | freeipa-3d9fb938d9ce1ed63619a8f130eba684af35be63.tar.gz freeipa-3d9fb938d9ce1ed63619a8f130eba684af35be63.tar.xz freeipa-3d9fb938d9ce1ed63619a8f130eba684af35be63.zip |
Facet icon swap and tab sizing
Diffstat (limited to 'install/ui/association.js')
-rw-r--r-- | install/ui/association.js | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/install/ui/association.js b/install/ui/association.js index 883bb2b42..4374500f1 100644 --- a/install/ui/association.js +++ b/install/ui/association.js @@ -381,7 +381,7 @@ IPA.association_table_widget = function (spec) { var button = $('input[name=remove]', container); button.replaceWith(IPA.action_button({ 'label': button.val(), - 'icon': 'ui-icon-trash', + 'icon': 'remove-icon', 'click': function() { if ($(this).hasClass('action-button-disabled')) { return false; @@ -410,7 +410,7 @@ IPA.association_table_widget = function (spec) { button = $('input[name=add]', container); button.replaceWith(IPA.action_button({ 'label': button.val(), - 'icon': 'ui-icon-plus', + 'icon': 'add-icon', 'click': function() { if ($(this).hasClass('action-button-disabled')) { return false; @@ -825,7 +825,7 @@ IPA.association_facet = function (spec) { if (!that.read_only) { that.remove_button = IPA.action_button({ label: IPA.messages.buttons.remove, - icon: 'ui-icon-trash', + icon: 'remove-icon', click: function() { that.show_remove_dialog(); return false; @@ -834,7 +834,7 @@ IPA.association_facet = function (spec) { that.add_button = IPA.action_button({ label: IPA.messages.buttons.enroll, - icon: 'ui-icon-plus', + icon: 'add-icon', click: function() { that.show_add_dialog(); return false; |