1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
|
/*
* ============LICENSE_START=======================================================
* ONAP : CDS
* ================================================================================
* Copyright (C) 2019 TechMahindra
*=================================================================================
* 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.
* ============LICENSE_END=========================================================
*/
.metadata-card {
width: 100%;
background-color: #f1f1f1;
padding: 0.01em 16px;
margin: 20px 0;
box-shadow: 0 2px 2px 0 rgba(0,0,0,0.16),0 2px 10px 0 rgba(0,0,0,0.12)!important;
height: auto;
min-height:340px;
}
.sources-card {
width: 100%;
background-color: #f1f1f1;
padding: 0.01em 16px;
margin: 20px 0;
box-shadow: 0 2px 2px 0 rgba(0,0,0,0.16),0 2px 10px 0 rgba(0,0,0,0.12)!important;
height: auto;
min-height:300px;
}
.mat-button{
color:white;
background:#3f51b5;
margin-top: 10px;
position: absolute;
border-radius: 4px;
}
.mat-card-title{
padding-top: 7px;
}
.mat-card-header{
height:35px;
}
.mat-card-content{
width: auto;
background-color: #fff;
padding: 8px 8px;
word-wrap: break-word;
}
.btn{
width: 50px;
max-width: 100%;
margin: 0 25px 25px 0;
display: inline-block;
vertical-align: top;
border-radius: 4px;
}
.toggle-view-btn{
color:white;
background:#3f51b5;
border-radius: 4px;
margin-top: 10px;
padding:0.6em;
border: 1px solid #3f51b5;
}
|