From ffcf10c832de5f99dd96d1c77713b875ed1e2760 Mon Sep 17 00:00:00 2001 From: Adam Young Date: Thu, 27 Jan 2011 16:37:48 -0500 Subject: default disable delete --- install/ui/ipa.css | 16 ++++++++++++++++ install/ui/search.js | 16 +++++++++++++++- 2 files changed, 31 insertions(+), 1 deletion(-) (limited to 'install') diff --git a/install/ui/ipa.css b/install/ui/ipa.css index e3760f32..6ba60dff 100644 --- a/install/ui/ipa.css +++ b/install/ui/ipa.css @@ -43,6 +43,11 @@ body{ cursor: pointer; } +.input_link_disabled { + cursor: default; + color:black; +} + .input_link span.ui-icon { -moz-border-radius: 0.3em; border: 1px solid #B8B8B8; @@ -52,6 +57,17 @@ body{ top: 50%; } +.input_link_disabled span.ui-icon { + -moz-border-radius: 0.3em; + border: 1px solid #B8B8B8; + margin: -0.9em 0.4em 0em -0.3em; + position: absolute; + left: .2em; + top: 50%; +} + + + .ipa-icon { font-size: 0.7em; padding-right: 0.3em; diff --git a/install/ui/search.js b/install/ui/search.js index b88de20a..20a6f51f 100644 --- a/install/ui/search.js +++ b/install/ui/search.js @@ -103,10 +103,12 @@ IPA.search_widget = function (spec) { that.remove_button = IPA.action_button({ 'label': IPA.messages.button.remove, 'icon': 'ui-icon-trash', - 'click': function() { that.remove(that.container); } }); + that.remove_button.addClass('input_link_disabled'); + button.replaceWith(that.remove_button); + button = $('input[name=add]', search_buttons); that.add_button = IPA.action_button({ 'label': IPA.messages.button.add, @@ -156,6 +158,18 @@ IPA.search_widget = function (spec) { $('input', action_panel).val(null); } + + if(count === 0){ + var remove_button = $('a[title=Delete]', action_panel); + remove_button.addClass('input_link_disabled'); + remove_button.unbind('click'); + + }else{ + var remove_button = $('a[title=Delete]', action_panel); + remove_button.click(function() { that.remove(that.container); }); + remove_button.removeClass('input_link_disabled'); + } + return false; }; -- cgit