summaryrefslogtreecommitdiffstats
path: root/install/static/associate.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/associate.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/associate.js')
-rw-r--r--install/static/associate.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/install/static/associate.js b/install/static/associate.js
index 540b1a80f..ffec9516d 100644
--- a/install/static/associate.js
+++ b/install/static/associate.js
@@ -317,14 +317,14 @@ function ipa_association_table_widget(spec) {
that.table_setup(container);
var button = $('input[name=remove]', container);
- button.replaceWith(ipa_button({
+ button.replaceWith(IPA.action_button({
'label': button.val(),
'icon': 'ui-icon-trash',
'click': function() { that.show_remove_dialog(); }
}));
button = $('input[name=add]', container);
- button.replaceWith(ipa_button({
+ button.replaceWith(IPA.action_button({
'label': button.val(),
'icon': 'ui-icon-plus',
'click': function() { that.show_add_dialog() }
@@ -679,14 +679,14 @@ function ipa_association_facet(spec) {
var action_panel = that.get_action_panel();
var button = $('input[name=remove]', action_panel);
- button.replaceWith(ipa_button({
+ button.replaceWith(IPA.action_button({
'label': button.val(),
'icon': 'ui-icon-trash',
'click': function() { that.show_remove_dialog(); }
}));
button = $('input[name=add]', action_panel);
- button.replaceWith(ipa_button({
+ button.replaceWith(IPA.action_button({
'label': button.val(),
'icon': 'ui-icon-plus',
'click': function() { that.show_add_dialog() }