summaryrefslogtreecommitdiffstats
path: root/usecaseui-portal/src/app/shared/components/graphiclist/graphiclist.component.less
blob: 494e2229360fa9c3f06a4b7dafa6b20d13bd6b2b (plain)
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
/*
    Copyright (C) 2019 CMCC, Inc. and others. All rights reserved.

    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.
*/
.content {
    .title {
        border-radius: 5px 5px 0 0;
        background-color: #fff;
        height: 106px;
        border-bottom: 1px solid #f0f0f0;
        margin-bottom: 0;
        ul {
            display: flex;
            display: -webkit-flex; 
            justify-content: space-around;
            align-items: center;
            padding: 0;
            margin: 0;
            height: 100%;
            li {
                list-style: none;
                padding-left: 32px;
                width: 100%;
                border-left: 1px solid #eceff4;
                h5 {
                    font: 500 14px "Arial";
                    color: #3d4d65;
                }
                p {
                    font: 500 24px "Arial";
                    color: #3fa8eb;
                    margin-bottom: 0;
                }
            }
            li:nth-child(1){
                border: none;
            }
        }
    }
    .chart {
        position: relative;
        border-radius: 5px;
        margin-bottom: 20px;
        height: 70px;
        .select {
            padding: 20px  20px 20px 0px;
            width: 70%;
            float: left;
            span {
                display: inline-block;
                font: 700 14px "Arial";
                color: #4c5e70;
            }
            .search {
                margin-left: 20px;       
                height: 30px;
                padding: 0 10px;
                span {
                    color: #fff;
                    font-weight: 400;
                }
            }
        }
    }
    .tablelist {
        background-color: #fff;
        padding: 24px 10px 0px;
        border-radius: 0 0 5px 5px;
        .action{
            padding: 10px 0 0 20px;
            .details{
                display: inline-block;
                width: 16px;
                height: 16px;
                background: url(../../../../assets/images/icon.png) center -113px;
                &:hover {
                    background: url(../../../../assets/images/icon.png) no-repeat center -128px;
                }
            }
        }
    }
}