GUI for test blueprint
[ccsdk/cds.git] / cds-ui / client / src / app / feature-modules / blueprint / test-template / test-template.component.html
1 <!--
2 ============LICENSE_START==========================================
3 ===================================================================
4 Copyright (C) 2018 IBM Intellectual Property. All rights reserved.
5 ===================================================================
6
7 Unless otherwise specified, all software contained herein is licensed
8 under the Apache License, Version 2.0 (the License);
9 you may not use this software except in compliance with the License.
10 You may obtain a copy of the License at
11
12     http://www.apache.org/licenses/LICENSE-2.0
13
14 Unless required by applicable law or agreed to in writing, software
15 distributed under the License is distributed on an "AS IS" BASIS,
16 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17 See the License for the specific language governing permissions and
18 limitations under the License.
19 ============LICENSE_END============================================
20 -->
21 <div style="display: flex;flex-direction: row">
22   <div style="width: 20%;margin: 2px">
23     <mat-tree [dataSource]="dataSource" [treeControl]="treeControl">
24       <!-- This is the tree node template for leaf nodes -->
25       <mat-tree-node *matTreeNodeDef="let node" matTreeNodePadding>
26         <!-- use a disabled button to provide padding for tree leaf -->
27         <button mat-icon-button disabled></button>
28         <span (click)="fileClicked(node.name)">{{node.name}}</span>
29       </mat-tree-node>
30       <!-- This is the tree node template for expandable nodes -->
31       <mat-tree-node *matTreeNodeDef="let node;when: hasChild" matTreeNodePadding>
32         <button mat-icon-button matTreeNodeToggle
33                 [attr.aria-label]="'toggle ' + node.name">
34           <mat-icon class="mat-icon-rtl-mirror">
35             {{treeControl.isExpanded(node) ? 'expand_more' : 'chevron_right'}}
36           </mat-icon>
37         </button>
38         <span (click)="fileClicked(node.name)">{{node.name}}</span>
39       </mat-tree-node>
40     </mat-tree>
41   </div>
42   <div style="width: 80%;background-color: gainsboro;height: 533px;"></div>
43 </div>
44
45 <div>
46   <button style="    background-color: #3f51b5;
47   color: white;
48   border: 2px solid;
49   width: 8em;
50   height: 3em;
51   border-radius: 2em;">Test</button>
52 </div>