diff options
author | Tao Shen <shentao@chinamobile.com> | 2019-09-17 09:28:23 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2019-09-17 09:28:23 +0000 |
commit | cd8c3514192ccc563ee7e9e4619961a15dbb639b (patch) | |
tree | 8402dfa7e28675fb4eb975ab8c2fa632af72708c /usecaseui-portal/src/app/shared/components/e2e-detail/e2e-detail.component.html | |
parent | c176eb964eb4877adb35a502791a13434bd57c76 (diff) | |
parent | 83377928f6c8d6019ab70b6d2667482093ea3ed4 (diff) |
Merge "style:optimize the style of the e2e/ns detail page"
Diffstat (limited to 'usecaseui-portal/src/app/shared/components/e2e-detail/e2e-detail.component.html')
-rw-r--r-- | usecaseui-portal/src/app/shared/components/e2e-detail/e2e-detail.component.html | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/usecaseui-portal/src/app/shared/components/e2e-detail/e2e-detail.component.html b/usecaseui-portal/src/app/shared/components/e2e-detail/e2e-detail.component.html index c0953a90..976a9f6c 100644 --- a/usecaseui-portal/src/app/shared/components/e2e-detail/e2e-detail.component.html +++ b/usecaseui-portal/src/app/shared/components/e2e-detail/e2e-detail.component.html @@ -50,7 +50,7 @@ <h3>{{template.name}}</h3> <ul class="clearfix"> <li *ngFor="let input of template.vnfs; let i = index;"> - <span style="width: 26%"> vf_location: </span> + <span style="width: 26%;min-width: 80px!important"> vf_location: </span> <span class="input-content">{{input["vf_location"]}}</span> </li> </ul> @@ -84,9 +84,14 @@ <h4>vnfs Inputs</h4> <ul> <li *ngFor="let vnf of ns_nestedTemplates;"> - <h5>id: {{vnf.vnfInstanceId}}</h5> - <span style="width: 26%"> vf_location: </span> - <span class="input-content">{{vnf["vnfInstanceName"]}}</span> + <h5> + <span style="width: 26%;min-width: 80px!important"> id: </span> + <span class="input-content"> {{vnf.vnfInstanceId}}</span> + </h5> + <h5> + <span style="width: 26%;min-width: 80px!important"> vf_location: </span> + <span class="input-content">{{vnf["vnfInstanceName"]}}</span> + </h5> </li> </ul> </div> |