From 5b59be8287ef9aaa4dbda37c340a70fd48fd2531 Mon Sep 17 00:00:00 2001 From: Arundathi Patil Date: Thu, 21 Feb 2019 15:58:13 +0530 Subject: Modify component changes Made changes in modify component so that the user can view file-editor first once navigating to stepper 2 Issue-ID: CCSDK-1098 Change-Id: Ibcb48d05567d0bb1857bfb467dd8c4ee5e107181 Signed-off-by: Arundathi Patil --- .../modify-template/modify-template.component.html | 16 +++++-------- .../modify-template/modify-template.component.scss | 27 ++++++++++++++++++++++ .../modify-template/modify-template.component.ts | 6 ++--- 3 files changed, 36 insertions(+), 13 deletions(-) (limited to 'cds-ui/client/src/app/feature-modules/blueprint/modify-template') diff --git a/cds-ui/client/src/app/feature-modules/blueprint/modify-template/modify-template.component.html b/cds-ui/client/src/app/feature-modules/blueprint/modify-template/modify-template.component.html index d59597021..8397ae9f6 100644 --- a/cds-ui/client/src/app/feature-modules/blueprint/modify-template/modify-template.component.html +++ b/cds-ui/client/src/app/feature-modules/blueprint/modify-template/modify-template.component.html @@ -20,7 +20,7 @@ limitations under the License. -->
-
+
@@ -48,20 +48,16 @@ limitations under the License.
+ + -
- - +
-
+ -
-
{{ item }}
-
- -
+
diff --git a/cds-ui/client/src/app/feature-modules/blueprint/modify-template/modify-template.component.scss b/cds-ui/client/src/app/feature-modules/blueprint/modify-template/modify-template.component.scss index 1ddb2559e..74303dcfb 100644 --- a/cds-ui/client/src/app/feature-modules/blueprint/modify-template/modify-template.component.scss +++ b/cds-ui/client/src/app/feature-modules/blueprint/modify-template/modify-template.component.scss @@ -78,4 +78,31 @@ limitations under the License. .mat-expansion-panel-header-title { color: white !important; +} + +.enrich-btn { + cursor: pointer; + position: absolute; + top: 4em; + right: 27em; + padding: 6px; + color: white; + background-color:#3f51b5; + margin-right: 2em; + border-radius: 2em; +} + +.toggle-view-btn { + cursor: pointer; + position: absolute; + top: 4em; + right: 20em; + padding: 6px; + color: white; + background-color:#3f51b5; + border-radius: 2em +} + +.editor-selector { + width: 100%; } \ No newline at end of file diff --git a/cds-ui/client/src/app/feature-modules/blueprint/modify-template/modify-template.component.ts b/cds-ui/client/src/app/feature-modules/blueprint/modify-template/modify-template.component.ts index 1efdefce6..809f31027 100644 --- a/cds-ui/client/src/app/feature-modules/blueprint/modify-template/modify-template.component.ts +++ b/cds-ui/client/src/app/feature-modules/blueprint/modify-template/modify-template.component.ts @@ -28,9 +28,9 @@ import { Component, OnInit } from '@angular/core'; }) export class ModifyTemplateComponent implements OnInit { - designerMode: boolean = true; - editorMode: boolean = false; - viewText: string = "Editor View"; + designerMode: boolean = false; + editorMode: boolean = true; + viewText: string = "Designer View"; constructor() { } -- cgit 1.2.3-korg