summaryrefslogtreecommitdiffstats
path: root/install/ui/search.js
diff options
context:
space:
mode:
authorkylebaker <kylebaker@dhcp-100-2-212.bos.redhat.com>2011-06-13 16:40:36 -0400
committerEndi S. Dewata <edewata@redhat.com>2011-06-14 21:17:13 +0000
commitfb6f06d94dcfd664ba817ce61f84d600ee17c260 (patch)
treea62a62f15966c5008d683e72ea2e0aef420b9860 /install/ui/search.js
parentdf0b927bfb2ad0f6cb15e5c69270d03668a2177c (diff)
downloadfreeipa-fb6f06d94dcfd664ba817ce61f84d600ee17c260.tar.gz
freeipa-fb6f06d94dcfd664ba817ce61f84d600ee17c260.tar.xz
freeipa-fb6f06d94dcfd664ba817ce61f84d600ee17c260.zip
Search bar style and positioning changes
Diffstat (limited to 'install/ui/search.js')
-rw-r--r--install/ui/search.js9
1 files changed, 5 insertions, 4 deletions
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 = $('<input/>', {
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;