Updated Branches: refs/heads/branch-1.4.2 48ee9ecaa -> 7392475a7
AMBARI-3882. Background operations popup window minimum size should be fixed when narrowing down the browser. (xiwang via yusaku) Project: http://git-wip-us.apache.org/repos/asf/ambari/repo Commit: http://git-wip-us.apache.org/repos/asf/ambari/commit/7392475a Tree: http://git-wip-us.apache.org/repos/asf/ambari/tree/7392475a Diff: http://git-wip-us.apache.org/repos/asf/ambari/diff/7392475a Branch: refs/heads/branch-1.4.2 Commit: 7392475a70399d4da4f34118cc6fcbf6d8ec86f0 Parents: 48ee9ec Author: Yusaku Sako <[email protected]> Authored: Tue Nov 26 10:20:24 2013 -0800 Committer: Yusaku Sako <[email protected]> Committed: Tue Nov 26 10:21:03 2013 -0800 ---------------------------------------------------------------------- ambari-web/app/styles/application.less | 12 ++++++------ ambari-web/app/utils/host_progress_popup.js | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ambari/blob/7392475a/ambari-web/app/styles/application.less ---------------------------------------------------------------------- diff --git a/ambari-web/app/styles/application.less b/ambari-web/app/styles/application.less index f911d7f..6fa73fe 100644 --- a/ambari-web/app/styles/application.less +++ b/ambari-web/app/styles/application.less @@ -1338,11 +1338,12 @@ width:100%; /*60% width modal window end*/ /*****start styles for host component popup*****/ -.host-component-popup-wrap -{ - - - +.host-progress-popup { + .modal-body, .modal-footer, .modal-header { + min-width: 600px; + } +} +.host-component-popup-wrap { #host-info, #service-info{ .task-list-line-cursor{ width: 100%; @@ -1376,7 +1377,6 @@ width:100%; } } } - } /*****end styles for host component popup*****/ http://git-wip-us.apache.org/repos/asf/ambari/blob/7392475a/ambari-web/app/utils/host_progress_popup.js ---------------------------------------------------------------------- diff --git a/ambari-web/app/utils/host_progress_popup.js b/ambari-web/app/utils/host_progress_popup.js index f25f4c4..b3636cc 100644 --- a/ambari-web/app/utils/host_progress_popup.js +++ b/ambari-web/app/utils/host_progress_popup.js @@ -478,7 +478,7 @@ App.HostPopup = Em.Object.create({ controller: this, template: Ember.Handlebars.compile('{{popupHeaderName}}') }), - classNames: ['sixty-percent-width-modal'], + classNames: ['sixty-percent-width-modal', 'host-progress-popup'], // for the checkbox: do not show this dialog again hasFooterCheckbox: true, isNotShowBgChecked : null,
