Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 7 additions & 3 deletions ambari-web/app/styles/wizard.less
Original file line number Diff line number Diff line change
Expand Up @@ -229,6 +229,12 @@
.glyphicon-asterisks {
color: #00688B;
}
.checkbox-cell {
padding-top: 4px;
}
.checkbox-row {
width: 47px;
}
}
#step6 {
.pre-scrollable {
Expand All @@ -250,6 +256,7 @@
margin: 0;
}
.host-component-checkbox {
line-height: 17px;
font-size: 12px;
top: 0px;
}
Expand Down Expand Up @@ -770,6 +777,3 @@
}
}

.checkbox-row {
width: 47px;
}
4 changes: 2 additions & 2 deletions ambari-web/app/templates/wizard/step4.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
{{#each service in controller.fileSystems}}
{{#unless service.isHiddenOnSelectServicePage}}
<tr {{QAAttr "service-row"}} {{bindAttr class="service.isSelected:active service.isSelected:service-selected"}} {{action toggleCheckBox service target="view"}} >
<td>
<td class="checkbox-cell">
<div class="checkbox">
{{view App.CheckboxView checkboxClassNamesBinding="service.serviceName" data-qa="toggle-service"
disabledBinding="service.isDisabled"
Expand Down Expand Up @@ -74,7 +74,7 @@
{{#unless service.isHiddenOnSelectServicePage}}
{{#unless service.isDFS}}
<tr {{QAAttr "service-row"}} {{bindAttr class="service.isSelected:active service.isSelected:service-selected"}} {{action toggleCheckBox service target="view"}}>
<td>
<td class="checkbox-cell">
<div class="checkbox">
{{view App.CheckboxView checkboxClassNamesBinding="service.serviceName" data-qa="toggle-service"
disabledBinding="service.isDisabled"
Expand Down
4 changes: 2 additions & 2 deletions ambari-web/app/templates/wizard/step8.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -97,10 +97,10 @@
{{/if}}
{{t common.deploy}} &rarr;
</button>
<button type="button" class="btn btn-info pull-right" {{action printReview target="view"}}>{{t common.print}}</button>
<button type="button" class="btn btn-secondary pull-right" {{action printReview target="view"}}>{{t common.print}}</button>
<button type="button" {{bindAttr class=":btn :btn-primary :pull-right :mrm controller.showDownloadCsv::hide"}} {{action downloadCSV target="controller"}}>{{t admin.kerberos.wizard.step5.downloadCSV}}</button>
{{#unless App.router.clusterInstallCompleted}}
<button type="button" class="btn btn-success pull-right" {{action generateBlueprintConfirmation target="controller"}}><i class="glyphicon glyphicon-download-alt"></i>&nbsp;
<button type="button" class="btn btn-secondary pull-right" {{action generateBlueprintConfirmation target="controller"}}><i class="glyphicon glyphicon-download-alt"></i>&nbsp;
{{t common.generate.blueprint}}
</button>
{{/unless}}
Expand Down