From fea4d3880ae78dd1e53380bc644638e4e3fc1dd5 Mon Sep 17 00:00:00 2001 From: Kyle Baker Date: Thu, 9 Dec 2010 16:32:22 -0500 Subject: button and table styling replaced expand contract +- with icons removed background for action buttons and gave them their own class Major css cleanup --- install/static/search.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'install/static/search.js') diff --git a/install/static/search.js b/install/static/search.js index a53a9efb..e81d882b 100644 --- a/install/static/search.js +++ b/install/static/search.js @@ -96,7 +96,7 @@ function ipa_search_widget(spec) { var search_buttons = $('.search-buttons', action_panel); button = $('input[name=remove]', search_buttons); - that.remove_button = ipa_button({ + that.remove_button = IPA.action_button({ 'label': IPA.messages.button.remove, 'icon': 'ui-icon-trash', 'click': function() { that.remove(that.container); } @@ -104,7 +104,7 @@ function ipa_search_widget(spec) { button.replaceWith(that.remove_button); button = $('input[name=add]', search_buttons); - that.add_button = ipa_button({ + that.add_button = IPA.action_button({ 'label': IPA.messages.button.add, 'icon': 'ui-icon-plus', 'click': function() { that.add(that.container); } -- cgit