aboutsummaryrefslogtreecommitdiffstats
path: root/cds-ui/client/src/app/feature-modules/blueprint/test-template/test-template.component.html
diff options
context:
space:
mode:
authorArundathi Patil <arundpil@in.ibm.com>2019-03-14 16:50:43 +0530
committerIBM602-PC0F1E3C\Arundathi <arundpil@in.ibm.com>2019-03-14 16:50:53 +0530
commitfb2c2a29913164f7d474156b68a416e50a24b6f2 (patch)
treeaf71220e7ea8286093edbd4f9fb13b9a665c9557 /cds-ui/client/src/app/feature-modules/blueprint/test-template/test-template.component.html
parent57e97e6e0abe1f42c8596f9b9dbbe202ca4e0919 (diff)
Removed inline css styles
Moved the inline styles to .css file Issue-ID: CCSDK-1069 Change-Id: Id4a6fd43290666b992d6884dccda0896062a00b2 Signed-off-by: Arundathi Patil <arundpil@in.ibm.com>
Diffstat (limited to 'cds-ui/client/src/app/feature-modules/blueprint/test-template/test-template.component.html')
-rw-r--r--cds-ui/client/src/app/feature-modules/blueprint/test-template/test-template.component.html36
1 files changed, 5 insertions, 31 deletions
diff --git a/cds-ui/client/src/app/feature-modules/blueprint/test-template/test-template.component.html b/cds-ui/client/src/app/feature-modules/blueprint/test-template/test-template.component.html
index b16a06494..da3580cd5 100644
--- a/cds-ui/client/src/app/feature-modules/blueprint/test-template/test-template.component.html
+++ b/cds-ui/client/src/app/feature-modules/blueprint/test-template/test-template.component.html
@@ -18,47 +18,21 @@ See the License for the specific language governing permissions and
limitations under the License.
============LICENSE_END============================================
-->
-<div style="display: flex;flex-direction: row">
+<div class="testTemplateContainer">
- <!-- <div style="width: 12%; height: 553px;">
-
- <mat-accordion>
- <mat-expansion-panel>
- <mat-expansion-panel-header style="background-color: #f1f1f1">
- <mat-panel-title>
- Workflows
- </mat-panel-title>
- </mat-expansion-panel-header>
- <div class="flex-container">
- <div style="cursor: pointer; padding: 2px" (click)="createRequest(workflow)" class="item-box" *ngFor="let workflow of workflows">{{workflow.name}}</div>
- </div>
- </mat-expansion-panel>
- </mat-accordion>
- </div> -->
-
- <div style="width: 100%;display: flex;flex-direction: row; margin-left: 1em">
- <div style="width: 50%; margin: 2px; ">
+ <div class="editorContainer">
+ <div class="editorDiv">
<p>Request</p>
- <!-- <textarea style=" width: 99%;
- min-height: 27rem;
- font-family: Lucida Console, Monaco, monospace;
- font-size: 0.8rem;
- line-height: 1.2;" cols="30" rows="10">{{request }}</textarea> -->
<ace-editor [(text)]="text" mode="json" [theme]="eclipse" [options]="options" #editor class="aceEditor"></ace-editor>
- <div style="height: 10%">
+ <div class="btnContainer">
<button class="button">Submit</button>
<button class="button">Clear</button>
</div>
</div>
- <div style="width: 50%; margin: 2px;">
+ <div class="editorDiv">
<p>Response</p>
<ace-editor [(text)]="text" mode="json" [theme]="eclipse" [options]="options" #editor class="aceEditor"></ace-editor>
- <!-- <textarea style=" width: 99%;
- min-height: 27rem;
- font-family: Lucida Console, Monaco, monospace;
- font-size: 0.8rem;
- line-height: 1.2;" cols="30" rows="10"></textarea> -->
</div>
</div>