diff options
author | guochuyicmri <guochuyi@chinamobile.com> | 2019-05-14 18:41:02 +0800 |
---|---|---|
committer | guochuyicmri <guochuyi@chinamobile.com> | 2019-05-14 18:41:09 +0800 |
commit | cd934c497a6bf26992bcb42e27a179479001658b (patch) | |
tree | ee5446472dc01cf1cca77ed1ab363a50bdbfba99 /usecaseui-portal/src/app/components/e2e-detail | |
parent | e044dfe80bcefb9004c8b6d3156d15ac56426dad (diff) |
Fix instance instantiation for CCVPN
Change-Id: Ibf9be061fb6a461cd6c73ccf56a6afe72928157d
Issue-ID: USECASEUI-220
Signed-off-by: guochuyicmri <guochuyi@chinamobile.com>
Diffstat (limited to 'usecaseui-portal/src/app/components/e2e-detail')
-rw-r--r-- | usecaseui-portal/src/app/components/e2e-detail/e2e-detail.component.html | 4 | ||||
-rw-r--r-- | usecaseui-portal/src/app/components/e2e-detail/e2e-detail.component.less | 15 |
2 files changed, 8 insertions, 11 deletions
diff --git a/usecaseui-portal/src/app/components/e2e-detail/e2e-detail.component.html b/usecaseui-portal/src/app/components/e2e-detail/e2e-detail.component.html index dec6f2d3..29ac4194 100644 --- a/usecaseui-portal/src/app/components/e2e-detail/e2e-detail.component.html +++ b/usecaseui-portal/src/app/components/e2e-detail/e2e-detail.component.html @@ -19,9 +19,7 @@ <div class="top-title"> <h3 class="title fl">{{serviceInstanceName}} Instance Detail</h3> <div class="fl" style="width: 20%"> - <button class="back" nz-button (click)="goback()"> - <i class="anticon anticon-arrow-left" style="transform: scale(1.5)"></i> - </button> + <button class="back" nz-button (click)="goback()"></button> </div> </div> <div class="detaildata fl"> diff --git a/usecaseui-portal/src/app/components/e2e-detail/e2e-detail.component.less b/usecaseui-portal/src/app/components/e2e-detail/e2e-detail.component.less index fd306c5b..bba5160f 100644 --- a/usecaseui-portal/src/app/components/e2e-detail/e2e-detail.component.less +++ b/usecaseui-portal/src/app/components/e2e-detail/e2e-detail.component.less @@ -38,21 +38,23 @@ hr { position: relative; display: inline-block; } - .back { + .back,.back:hover{ position: absolute; top: 10px; right: 20px; display: inline-block; width: 35px; height: 35px; - background:#ffffff!important; + background:url("../../../assets/images/Return-icon.png") no-repeat!important; + background-size: 100%!important; border-radius:4px; color: #D7D7D7; + cursor: pointer; + /*border: 1px solid #ffffff;*/ } .back:hover{ - background:#ffffff; - color: #3F9CFF; - border:1px solid #3F9CFF; + background: url("../../../assets/images/Return-icon-active.png")!important; + background-size: 100%!important; } .top-title h3.title { height: 35px; @@ -132,10 +134,7 @@ hr { height: 95%; box-shadow: 0px 10px 35px 10px rgba(222, 222, 222, 0.5); margin-right: 40px; - //background: url("../../../assets/images/ccvpn-createbanner2.png") no-repeat -45px -10px; - //background-size: 110% 110%; background:linear-gradient(180deg,rgba(183, 230, 247, 1) 0%,rgba(214, 240, 254, 1) 100%); - //background-color: rgba(188, 231, 248, 1); border-radius: 4px; #createChart{ height: 100%; |