diff options
author | guochuyicmri <guochuyi@chinamobile.com> | 2019-05-27 11:27:43 +0800 |
---|---|---|
committer | guochuyicmri <guochuyi@chinamobile.com> | 2019-05-27 11:27:50 +0800 |
commit | 6d4c2f0f9bc8572e32927e00c289b933c46cff25 (patch) | |
tree | 67d0e735c0b3c32e9ed42476ccc3d0297eef9682 /usecaseui-portal/src/app | |
parent | 4fa6adb91b4a31cd26d24d834477a1fa94d2a83d (diff) |
Service instance lifecycle management
Change-Id: I11ca7912bf82ba31ec3ed05390d22c803dd442e9
Issue-ID: USECASEUI-218
Signed-off-by: guochuyicmri <guochuyi@chinamobile.com>
Diffstat (limited to 'usecaseui-portal/src/app')
-rw-r--r-- | usecaseui-portal/src/app/services/services-list/services-list.component.html | 2 | ||||
-rw-r--r-- | usecaseui-portal/src/app/services/services-list/services-list.component.less | 68 |
2 files changed, 39 insertions, 31 deletions
diff --git a/usecaseui-portal/src/app/services/services-list/services-list.component.html b/usecaseui-portal/src/app/services/services-list/services-list.component.html index 35504ae0..969898a3 100644 --- a/usecaseui-portal/src/app/services/services-list/services-list.component.html +++ b/usecaseui-portal/src/app/services/services-list/services-list.component.html @@ -106,8 +106,8 @@ <span>{{item.InProgress}}</span> <span> {{"i18nTextDefine_InProgress" | translate}} </span> </p> - <p class="service-description"> {{item.detailName | translate}} </p> </div> + <p class="service-description"> {{item.detailName | translate}} </p> </li> </ul> <div class="list" id="services-list" [ngClass]="{'listdisplay':listDisplay == true}"> diff --git a/usecaseui-portal/src/app/services/services-list/services-list.component.less b/usecaseui-portal/src/app/services/services-list/services-list.component.less index e4a2c6b3..7f23ac8b 100644 --- a/usecaseui-portal/src/app/services/services-list/services-list.component.less +++ b/usecaseui-portal/src/app/services/services-list/services-list.component.less @@ -179,40 +179,48 @@ hr { font-family:ArialMT; color:#3C4F8C; } -.top-list .top-list-text{ - position: absolute; - text-align: right; - height: 40px; - line-height: 20px; - right: 50px; - color: #fff; - p{ - font-size: 14px; - width: 250px; - margin: 15px 0 0 0; - height: 13px; - clear: both; - span{ - display: inline-block; - font-weight: 500; - text-align: right; - float: right; - } - span:nth-child(1){ - font-size: 18px; - width: 40px; - min-width: 40px; +.top-list { + .top-list-text { + position: absolute; + text-align: right; + height: 40px; + line-height: 20px; + right: 50px; + color: #fff; + p { + font-size: 14px; + width: 250px; + margin: 15px 0 0 0; + height: 13px; + clear: both; + span { + display: inline-block; + font-weight: 500; + text-align: right; + float: right; + } + span:nth-child(1) { + font-size: 18px; + width: 40px; + min-width: 40px; + } + span:nth-child(2) { + width: 85px; + font-size: 16px; + } } - span:nth-child(2){ - width: 85px; - font-size: 16px; + p:nth-child(1) { + margin-top: 25px; } } - p:nth-child(1){ - margin-top: 25px; - } .service-description{ - color: rgba(255,255,255,0.7); + font-size: 14px; + width: 250px; + height: 13px; + position: absolute; + bottom: 30px; + left: 50px; + color: #3C4F8C; } } .list { |