summaryrefslogtreecommitdiffstats
path: root/install/static/search.js
diff options
context:
space:
mode:
authorKyle Baker <kybaker@redhat.com>2010-12-09 16:32:22 -0500
committerAdam Young <ayoung@redhat.com>2010-12-10 10:17:34 -0500
commitfea4d3880ae78dd1e53380bc644638e4e3fc1dd5 (patch)
treeaa20f27f410049e8c2c6a5061e26cc73d185be87 /install/static/search.js
parent0938fb70eeb69d7bcc0f54a99d7650c166a1a88d (diff)
downloadfreeipa-fea4d3880ae78dd1e53380bc644638e4e3fc1dd5.tar.gz
freeipa-fea4d3880ae78dd1e53380bc644638e4e3fc1dd5.tar.xz
freeipa-fea4d3880ae78dd1e53380bc644638e4e3fc1dd5.zip
button and table styling
replaced expand contract +- with icons removed background for action buttons and gave them their own class Major css cleanup
Diffstat (limited to 'install/static/search.js')
-rw-r--r--install/static/search.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/install/static/search.js b/install/static/search.js
index a53a9efbb..e81d882b8 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); }