Repository: ambari Updated Branches: refs/heads/trunk 341ff3ec6 -> 0beb353a0
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/0beb353a Tree: http://git-wip-us.apache.org/repos/asf/ambari/tree/0beb353a Diff: http://git-wip-us.apache.org/repos/asf/ambari/diff/0beb353a Branch: refs/heads/trunk Commit: 0beb353a01931306081b6566f98421c55f116c17 Parents: 341ff3e Author: ababiichuk <[email protected]> Authored: Sat Feb 25 14:34:22 2017 +0200 Committer: ababiichuk <[email protected]> Committed: Sat Feb 25 15:13:59 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/0beb353a/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 ea649b8..db65b2a 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 @@ -372,7 +372,7 @@ App.ManageAlertGroupsController = Em.Controller.extend({ var self = this; return App.ModalPopup.show({ - classNames: [ 'common-modal-wrapper' ], + classNames: ['common-modal-wrapper', 'full-height-modal'], modalDialogClasses: ['modal-lg'], http://git-wip-us.apache.org/repos/asf/ambari/blob/0beb353a/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 e269791..f7fe88b 100644 --- a/ambari-web/app/styles/modal_popups.less +++ b/ambari-web/app/styles/modal_popups.less @@ -252,8 +252,6 @@ } .hosts-table-container{ width:100%; - height: 225px; - max-height: 225px; overflow: auto; } table{ http://git-wip-us.apache.org/repos/asf/ambari/blob/0beb353a/ambari-web/app/utils/hosts.js ---------------------------------------------------------------------- diff --git a/ambari-web/app/utils/hosts.js b/ambari-web/app/utils/hosts.js index 3896325..98d4d50 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: [ 'common-modal-wrapper' ], + classNames: ['common-modal-wrapper', 'full-height-modal'], modalDialogClasses: ['modal-lg'], elementId: 'host-selection-dialog',
