summaryrefslogtreecommitdiffstats
path: root/usecaseui-portal/src/app/views/ccvpn-creation
diff options
context:
space:
mode:
authorcyuamber <xuranyjy@chinamobile.com>2019-09-23 17:47:14 +0800
committercyuamber <xuranyjy@chinamobile.com>2019-09-23 17:47:18 +0800
commit1cf0677e3ca99b67cfcdd11ecc9614437cda1d83 (patch)
tree6888f357b57164b29df7faac43cc10dd97948346 /usecaseui-portal/src/app/views/ccvpn-creation
parent046a1ae7f6c2b761b726f14e2c5a59dee30000c4 (diff)
style:optimize sytle of ccvpn detail page
Change-Id: Ib303a259313410e7eb41dc84850bef5ff2a487af Issue-ID: USECASEUI-307 Signed-off-by: cyuamber <xuranyjy@chinamobile.com>
Diffstat (limited to 'usecaseui-portal/src/app/views/ccvpn-creation')
-rw-r--r--usecaseui-portal/src/app/views/ccvpn-creation/ccvpn-creation.component.css26
1 files changed, 10 insertions, 16 deletions
diff --git a/usecaseui-portal/src/app/views/ccvpn-creation/ccvpn-creation.component.css b/usecaseui-portal/src/app/views/ccvpn-creation/ccvpn-creation.component.css
index efeec683..7d8e8e23 100644
--- a/usecaseui-portal/src/app/views/ccvpn-creation/ccvpn-creation.component.css
+++ b/usecaseui-portal/src/app/views/ccvpn-creation/ccvpn-creation.component.css
@@ -129,20 +129,14 @@ hr {
.model .sitemodel,.model .sotnnpnmodel{
position: absolute;
z-index: 1001;
- left: 50px;
- top: 60px;
+ left: 50%;
+ top: 50%;
background-color: #fff;
- width:1500px;
- height: 81%;
+ width:90%;
+ min-width: 725px;
border-radius:2px;
overflow:auto;
-}
-.model .sotnnpnmodel{
- width: 1000px;
- height: 53%;
- top:200px;
- left: 50%;
- margin-left: -500px;
+ transform: translate(-50%, -50%);
}
.model .sitemodel h3,.model .sotnnpnmodel h3{
width: 96%;
@@ -182,14 +176,14 @@ hr {
float: left;
}
.model .sitemodel .inputs input,.model .sitemodel .inputs nz-select {
- width: 186px;
+ width: 42%;
float: right;
- margin-right: 60px;
+ margin-right: 2%;
}
.model .sotnnpnmodel .inputs input{
- width: 186px;
- float: left;
- margin-left: 20px;
+ width: 42%;
+ float: right;
+ margin-right: 2%;
}
.model .sitemodel .action,.model .sotnnpnmodel .action {
text-align: center;
#dd2200; background-color: #fff0f0 } /* Literal.String.Doc */ .highlight .s2 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Double */ .highlight .se { color: #0044dd; background-color: #fff0f0 } /* Literal.String.Escape */ .highlight .sh { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Heredoc */ .highlight .si { color: #3333bb; background-color: #fff0f0 } /* Literal.String.Interpol */ .highlight .sx { color: #22bb22; background-color: #f0fff0 } /* Literal.String.Other */ .highlight .sr { color: #008800; background-color: #fff0ff } /* Literal.String.Regex */ .highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */ .highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
/*
 *  Copyright © 2018 IBM.
 *
 *  Licensed under the Apache License, Version 2.0 (the "License");
 *  you may not use this file except in compliance with the License.
 *  You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 *  Unless required by applicable law or agreed to in writing, software
 *  distributed under the License is distributed on an "AS IS" BASIS,
 *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 *  See the License for the specific language governing permissions and
 *  limitations under the License.
 */

package org.onap.ccsdk.cds.blueprintsprocessor.functions.restconf.executor

import org.springframework.boot.autoconfigure.condition.ConditionalOnProperty
import org.springframework.boot.context.properties.EnableConfigurationProperties
import org.springframework.context.annotation.ComponentScan
import org.springframework.context.annotation.Configuration


@Configuration
@ComponentScan
@EnableConfigurationProperties
@ConditionalOnProperty(name = ["blueprintsprocessor.restconfEnabled"], havingValue = "true")
open class RestconfExecutorConfiguration