Skip to content

Commit 6faa37f

Browse files
author
OpenShift Bot
authored
Merge pull request #1822 from rhamilto/issue-1820
Merged by openshift-bot
2 parents d22548e + f3a15e6 commit 6faa37f

File tree

5 files changed

+13
-19
lines changed

5 files changed

+13
-19
lines changed

app/styles/_overlay-forms.less

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
.order-service-config-single-column {
2+
width: 100%;
3+
}
4+
15
.wizard-pf-main {
26
.deploy-image .empty-state-message {
37
margin: 30px auto;
@@ -7,11 +11,3 @@
711
height: 285px;
812
}
913
}
10-
11-
@media (min-width: 768px) {
12-
.order-service-config-single-column {
13-
margin-bottom: -20px;
14-
margin-top: -20px;
15-
overflow-y: auto;
16-
}
17-
}

app/views/directives/deploy-image-dialog.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
allow-click-nav="false"
2121
next-enabled="!$ctrl.deployForm.$invalid">
2222
<div class="wizard-pf-main-inner-shadow-covers">
23-
<div class="order-service-config-single-column">
23+
<div class="order-service-config order-service-config-single-column">
2424
<div class="wizard-pf-main-form-contents">
2525
<form name="$ctrl.deployForm">
2626
<deploy-image is-dialog="true" project="$ctrl.project" context="$ctrl.context"></deploy-image>
@@ -37,7 +37,7 @@
3737
ok-to-nav-away="true"
3838
allow-click-nav="false">
3939
<div class="wizard-pf-main-inner-shadow-covers">
40-
<div class="order-service-config-single-column">
40+
<div class="order-service-config order-service-config-single-column">
4141
<div class="wizard-pf-main-form-contents">
4242
<next-steps project="$ctrl.selectedProject"
4343
project-name="$ctrl.selectedProject.metadata.name"

app/views/directives/from-file-dialog.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
allow-click-nav="false"
1919
next-enabled="!$ctrl.importForm.$invalid">
2020
<div class="wizard-pf-main-inner-shadow-covers">
21-
<div class="order-service-config-single-column">
21+
<div class="order-service-config order-service-config-single-column">
2222
<div class="wizard-pf-main-form-contents">
2323
<form name="$ctrl.importForm">
2424
<from-file is-dialog="true" project="$ctrl.project" context="$ctrl.context"></from-file>
@@ -78,7 +78,7 @@
7878
allow-click-nav="false"
7979
prev-enabled="false">
8080
<div class="wizard-pf-main-inner-shadow-covers">
81-
<div class="order-service-config-single-column">
81+
<div class="order-service-config order-service-config-single-column">
8282
<div class="wizard-pf-main-form-contents">
8383
<!-- We don't want the directive to render until the results step is shown, this makes sure processed template info gets pulled from cache correctly -->
8484
<next-steps ng-if="$ctrl.currentStep === 'Results'" project="$ctrl.selectedProject"

dist/scripts/templates.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6221,7 +6221,7 @@ angular.module('openshiftConsoleTemplates', []).run(['$templateCache', function(
62216221
"<div pf-wizard on-cancel=\"$ctrl.close()\" on-finish=\"$ctrl.close()\" hide-header=\"true\" hide-back-button=\"true\" hide-sidebar=\"true\" next-title=\"$ctrl.nextButtonTitle\" next-callback=\"$ctrl.nextCallback\" current-step=\"$ctrl.currentStep\" step-class=\"order-service-wizard-step\" wizard-done=\"$ctrl.wizardDone\" class=\"pf-wizard-no-back\">\n" +
62226222
"<div pf-wizard-step step-title=\"Image\" step-id=\"image\" step-priority=\"1\" substeps=\"false\" ok-to-nav-away=\"true\" allow-click-nav=\"false\" next-enabled=\"!$ctrl.deployForm.$invalid\">\n" +
62236223
"<div class=\"wizard-pf-main-inner-shadow-covers\">\n" +
6224-
"<div class=\"order-service-config-single-column\">\n" +
6224+
"<div class=\"order-service-config order-service-config-single-column\">\n" +
62256225
"<div class=\"wizard-pf-main-form-contents\">\n" +
62266226
"<form name=\"$ctrl.deployForm\">\n" +
62276227
"<deploy-image is-dialog=\"true\" project=\"$ctrl.project\" context=\"$ctrl.context\"></deploy-image>\n" +
@@ -6232,7 +6232,7 @@ angular.module('openshiftConsoleTemplates', []).run(['$templateCache', function(
62326232
"</div>\n" +
62336233
"<div pf-wizard-step step-title=\"Results\" step-id=\"results\" step-priority=\"2\" substeps=\"false\" ok-to-nav-away=\"true\" allow-click-nav=\"false\">\n" +
62346234
"<div class=\"wizard-pf-main-inner-shadow-covers\">\n" +
6235-
"<div class=\"order-service-config-single-column\">\n" +
6235+
"<div class=\"order-service-config order-service-config-single-column\">\n" +
62366236
"<div class=\"wizard-pf-main-form-contents\">\n" +
62376237
"<next-steps project=\"$ctrl.selectedProject\" project-name=\"$ctrl.selectedProject.metadata.name\" login-base-url=\"$ctrl.loginBaseUrl\" on-continue=\"$ctrl.close\">\n" +
62386238
"</next-steps>\n" +
@@ -6950,7 +6950,7 @@ angular.module('openshiftConsoleTemplates', []).run(['$templateCache', function(
69506950
"<div pf-wizard on-cancel=\"$ctrl.close()\" on-finish=\"$ctrl.close()\" hide-header=\"true\" hide-sidebar=\"true\" next-title=\"$ctrl.nextButtonTitle\" next-callback=\"$ctrl.nextCallback\" current-step=\"$ctrl.currentStep\" wizard-done=\"$ctrl.wizardDone\" step-class=\"order-service-wizard-step\">\n" +
69516951
"<div pf-wizard-step step-title=\"JSON / YAML\" step-id=\"file\" step-priority=\"1\" substeps=\"false\" ok-to-nav-away=\"true\" allow-click-nav=\"false\" next-enabled=\"!$ctrl.importForm.$invalid\">\n" +
69526952
"<div class=\"wizard-pf-main-inner-shadow-covers\">\n" +
6953-
"<div class=\"order-service-config-single-column\">\n" +
6953+
"<div class=\"order-service-config order-service-config-single-column\">\n" +
69546954
"<div class=\"wizard-pf-main-form-contents\">\n" +
69556955
"<form name=\"$ctrl.importForm\">\n" +
69566956
"<from-file is-dialog=\"true\" project=\"$ctrl.project\" context=\"$ctrl.context\"></from-file>\n" +
@@ -6995,7 +6995,7 @@ angular.module('openshiftConsoleTemplates', []).run(['$templateCache', function(
69956995
"</div>\n" +
69966996
"<div pf-wizard-step step-title=\"Results\" step-id=\"results\" step-priority=\"3\" substeps=\"false\" ok-to-nav-away=\"true\" allow-click-nav=\"false\" prev-enabled=\"false\">\n" +
69976997
"<div class=\"wizard-pf-main-inner-shadow-covers\">\n" +
6998-
"<div class=\"order-service-config-single-column\">\n" +
6998+
"<div class=\"order-service-config order-service-config-single-column\">\n" +
69996999
"<div class=\"wizard-pf-main-form-contents\">\n" +
70007000
"\n" +
70017001
"<next-steps ng-if=\"$ctrl.currentStep === 'Results'\" project=\"$ctrl.selectedProject\" project-name=\"$ctrl.selectedProject.metadata.name\" login-base-url=\"$ctrl.loginBaseUrl\" on-continue=\"$ctrl.close\">\n" +

dist/styles/main.css

Lines changed: 1 addition & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)