From fb6f06d94dcfd664ba817ce61f84d600ee17c260 Mon Sep 17 00:00:00 2001 From: kylebaker Date: Mon, 13 Jun 2011 16:40:36 -0400 Subject: Search bar style and positioning changes --- install/ui/search.js | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'install/ui/search.js') diff --git a/install/ui/search.js b/install/ui/search.js index 5fdaefd5c..8250e0a76 100644 --- a/install/ui/search.js +++ b/install/ui/search.js @@ -113,6 +113,7 @@ IPA.search_facet = function(spec) { that.filter = $('', { type: 'text', + 'class': 'search-container', name: 'filter' }).appendTo(that.controls); @@ -123,9 +124,9 @@ IPA.search_facet = function(spec) { } }); - that.find_button = IPA.button({ + that.find_button = IPA.action_button({ label: IPA.messages.buttons.find, - icon: 'ui-icon-search', + icon: 'search-icon', click: function() { that.find(); return false; @@ -136,7 +137,7 @@ IPA.search_facet = function(spec) { that.remove_button = IPA.action_button({ label: IPA.messages.buttons.remove, - icon: 'ui-icon-trash', + icon: 'remove-icon', click: function() { if (that.remove_button.hasClass('input_link_disabled')) return false; that.remove(); @@ -146,7 +147,7 @@ IPA.search_facet = function(spec) { that.add_button = IPA.action_button({ label: IPA.messages.buttons.add, - icon: 'ui-icon-plus', + icon: 'add-icon', click: function() { that.add(); return false; -- cgit