Removed Next stepper button 09/78909/1
authorEzhilarasi <ezhrajam@in.ibm.com>
Thu, 21 Feb 2019 10:33:45 +0000 (16:03 +0530)
committerEzhilarasi <ezhrajam@in.ibm.com>
Thu, 21 Feb 2019 10:34:22 +0000 (16:04 +0530)
Removed extra button from stepper form 1
Change-Id: I0581ad81e2708aa26a0f99b4708d11f9330c4dfa
Issue-ID: CCSDK-704
Signed-off-by: Ezhilarasi <ezhrajam@in.ibm.com>
cds-ui/client/src/app/feature-modules/blueprint/blueprint.component.html

index 9a3ba1e..64556fb 100644 (file)
@@ -20,29 +20,26 @@ limitations under the License.
 <router-outlet></router-outlet> -->
 <mat-card class="CBAform">
     <mat-card-content>
-      <mat-horizontal-stepper [linear]="isLinear" #stepper>
-        <mat-step [stepControl]="firstFormGroup">
-          <ng-template matStepLabel>CBA Metadata</ng-template>
-          <app-select-template></app-select-template>
-          <div>
-              <button mat-button matStepperNext style="color:white;background:gray">Proceed</button>
-            </div>
-        </mat-step>
-        <mat-step [stepControl]="secondFormGroup">
-          <ng-template matStepLabel>Controller Blueprint Designer</ng-template>
-          <app-modify-template></app-modify-template>
-          <div style="position:relative">
-              <button mat-button matStepperNext style="color:white;background:gray; right: 20px; position: absolute;bottom:5px; ">Proceed</button>
-          </div>
-        </mat-step>
-        <mat-step [stepControl]="thirdFormGroup">
-          <ng-template matStepLabel>Test</ng-template>
-          <app-test-template></app-test-template>
-        </mat-step>
-        <mat-step [stepControl]="thirdFormGroup">
-            <ng-template matStepLabel>Deploy</ng-template>
-            <app-deploy-template></app-deploy-template>
-          </mat-step>
-      </mat-horizontal-stepper>
+        <mat-horizontal-stepper [linear]="isLinear" #stepper>
+            <mat-step [stepControl]="firstFormGroup">
+                <ng-template matStepLabel>CBA Metadata</ng-template>
+                <app-select-template></app-select-template>
+            </mat-step>
+            <mat-step [stepControl]="secondFormGroup">
+                <ng-template matStepLabel>Controller Blueprint Designer</ng-template>
+                <app-modify-template></app-modify-template>
+                <div style="position:relative">
+                    <button mat-button matStepperNext class="matStepNextBtn">Proceed</button>
+                </div>
+            </mat-step>
+            <mat-step [stepControl]="thirdFormGroup">
+                <ng-template matStepLabel>Test</ng-template>
+                <app-test-template></app-test-template>
+            </mat-step>
+            <mat-step [stepControl]="thirdFormGroup">
+                <ng-template matStepLabel>Deploy</ng-template>
+                <app-deploy-template></app-deploy-template>
+            </mat-step>
+        </mat-horizontal-stepper>
     </mat-card-content>
-  </mat-card>
+</mat-card>
\ No newline at end of file