Repository: ambari Updated Branches: refs/heads/branch-2.5 2b6c15af9 -> c9f9215e5
AMBARI-20172 Manage Configuration Group Hosts popup is way too small to be useful when it is needed. (ababiichuk) Project: http://git-wip-us.apache.org/repos/asf/ambari/repo Commit: http://git-wip-us.apache.org/repos/asf/ambari/commit/c9f9215e Tree: http://git-wip-us.apache.org/repos/asf/ambari/tree/c9f9215e Diff: http://git-wip-us.apache.org/repos/asf/ambari/diff/c9f9215e Branch: refs/heads/branch-2.5 Commit: c9f9215e599fec3c6ecba9c1b7b6a6aa81cd14f6 Parents: 2b6c15a Author: ababiichuk <[email protected]> Authored: Fri Feb 24 15:54:58 2017 +0200 Committer: ababiichuk <[email protected]> Committed: Sat Feb 25 15:16:02 2017 +0200 ---------------------------------------------------------------------- .../app/controllers/main/alerts/manage_alert_groups_controller.js | 2 +- ambari-web/app/styles/modal_popups.less | 2 -- ambari-web/app/utils/hosts.js | 2 +- 3 files changed, 2 insertions(+), 4 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ambari/blob/c9f9215e/ambari-web/app/controllers/main/alerts/manage_alert_groups_controller.js ---------------------------------------------------------------------- diff --git a/ambari-web/app/controllers/main/alerts/manage_alert_groups_controller.js b/ambari-web/app/controllers/main/alerts/manage_alert_groups_controller.js index 6ba5957..c92d62e 100644 --- a/ambari-web/app/controllers/main/alerts/manage_alert_groups_controller.js +++ b/ambari-web/app/controllers/main/alerts/manage_alert_groups_controller.js @@ -389,7 +389,7 @@ App.ManageAlertGroupsController = Em.Controller.extend({ return App.ModalPopup.show({ - classNames: [ 'sixty-percent-width-modal' ], + classNames: ['sixty-percent-width-modal', 'full-height-modal'], header: popupDescription.header, http://git-wip-us.apache.org/repos/asf/ambari/blob/c9f9215e/ambari-web/app/styles/modal_popups.less ---------------------------------------------------------------------- diff --git a/ambari-web/app/styles/modal_popups.less b/ambari-web/app/styles/modal_popups.less index 762ea46..98dcee7 100644 --- a/ambari-web/app/styles/modal_popups.less +++ b/ambari-web/app/styles/modal_popups.less @@ -464,8 +464,6 @@ } .hosts-table-container{ width:100%; - height: 225px; - max-height: 225px; overflow: auto; border: 1px solid #eee; } http://git-wip-us.apache.org/repos/asf/ambari/blob/c9f9215e/ambari-web/app/utils/hosts.js ---------------------------------------------------------------------- diff --git a/ambari-web/app/utils/hosts.js b/ambari-web/app/utils/hosts.js index e4a437c..c81cc02 100644 --- a/ambari-web/app/utils/hosts.js +++ b/ambari-web/app/utils/hosts.js @@ -51,7 +51,7 @@ module.exports = { } App.ModalPopup.show({ - classNames: [ 'sixty-percent-width-modal' ], + classNames: ['sixty-percent-width-modal', 'full-height-modal'], elementId: 'host-selection-dialog',
