Repository: ambari Updated Branches: refs/heads/trunk e2c81b45b -> 6938ad5e5
AMBARI-8825 Print Button in Install Wizard Step 9 should not be in scrolling area (wangy6 via jaoki) Project: http://git-wip-us.apache.org/repos/asf/ambari/repo Commit: http://git-wip-us.apache.org/repos/asf/ambari/commit/6938ad5e Tree: http://git-wip-us.apache.org/repos/asf/ambari/tree/6938ad5e Diff: http://git-wip-us.apache.org/repos/asf/ambari/diff/6938ad5e Branch: refs/heads/trunk Commit: 6938ad5e5cb6c7a6f198a3a8094c6903be511acf Parents: e2c81b4 Author: Jun Aoki <[email protected]> Authored: Mon Jan 12 12:06:07 2015 -0800 Committer: Jun Aoki <[email protected]> Committed: Mon Jan 12 12:06:07 2015 -0800 ---------------------------------------------------------------------- ambari-web/app/styles/application.less | 3 +++ ambari-web/app/templates/wizard/step8.hbs | 4 +--- 2 files changed, 4 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ambari/blob/6938ad5e/ambari-web/app/styles/application.less ---------------------------------------------------------------------- diff --git a/ambari-web/app/styles/application.less b/ambari-web/app/styles/application.less index 8a5bac9..783846e 100644 --- a/ambari-web/app/styles/application.less +++ b/ambari-web/app/styles/application.less @@ -680,6 +680,9 @@ h1 { } .btn-area { margin-top: 20px; + .btn.btn-info { + margin-right: 10px; + } } .wizard-content { padding: 25px; http://git-wip-us.apache.org/repos/asf/ambari/blob/6938ad5e/ambari-web/app/templates/wizard/step8.hbs ---------------------------------------------------------------------- diff --git a/ambari-web/app/templates/wizard/step8.hbs b/ambari-web/app/templates/wizard/step8.hbs index 1fe7f22..2a0f50e 100644 --- a/ambari-web/app/templates/wizard/step8.hbs +++ b/ambari-web/app/templates/wizard/step8.hbs @@ -29,9 +29,6 @@ {{/if}} <div id="step8-content" class="well pre-scrollable"> - <div id="printReview"> - <a class="btn btn-info pull-right" {{action printReview target="view"}}>{{t common.print}}</a> <br/> - </div> <div id="step8-info"> {{#each item in controller.clusterInfo}} <p> @@ -76,5 +73,6 @@ <a class="btn pull-left installer-back-btn" {{bindAttr disabled="controller.isBackBtnDisabled"}} {{action back}}>← {{t common.back}}</a> <a class="btn btn-success pull-right" id="spinner" {{bindAttr disabled="controller.isSubmitDisabled"}} {{action submit target="controller"}}>{{t common.deploy}} →</a> + <a class="btn btn-info pull-right" {{action printReview target="view"}}>{{t common.print}}</a> </div> </div> \ No newline at end of file
