aboutsummaryrefslogtreecommitdiffstats
path: root/usecaseui-portal/src/app/alarm/alarm.component.less
blob: 2d05c7034caced50d97fea08711a9505ee47ef8c (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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
.title {
    font: 700 18px/18px "思源黑体";
    color: #4c5e70;
    margin-bottom: 18px; 
}
hr {
    border: none;
    height: 2px;
    background-color: #dce1e7;
    margin-bottom: 20px;
}
.select {
    .query_criteria {
        span {
            display: inline-block;
            font: 700 14px "Arial";
            color: #4c5e70;
        }
        nz-dropdown {
            vertical-align: middle;
            :hover{
                border-color: #147dc2;
            }
            button {
                width: 165px;
                height: 30px;
                background-color: #eceff4;
                text-align: left;
                border-color: #9fa9ab;
                span {
                    font-weight: 400;
                    display: inline-block;
                    width: 120px;
                    overflow: hidden;
                    text-overflow: ellipsis;
                    padding-top: 2px;
                }
                i {
                    position: absolute;
                    top: 10px;
                    right: 10px;
                }
            }
            //下拉框中的样式在style.less中,下拉框是在body中额外临时生成的
        }
        .search {
            margin-left: 20px;       
            height: 30px;
            padding: 0 10px;
            span {
                color: #fff;
                font-weight: 400;
            }
        }
    }
   
}
// model style

::ng-deep .vertical-center-modal {
    display: flex;
    align-items: center;
    justify-content: center;
}
::ng-deep .vertical-center-modal .ant-modal {
    top: 0;
}

.content {
    clear: both;
    padding-top: 20px;
    .title {
        border-radius: 5px 5px 5px 5px;
        background-color: #fff;
        height: 106px;
        border-bottom: 1px solid #f0f0f0;
        margin-bottom: 20px;
        clear: both;
        ul {
            display: flex;
            display: -webkit-flex; 
            justify-content: space-around;
            align-items: center;
            padding: 0;
            margin: 0;
            height: 100%;
            width: 70%;
            float: left;
            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;
            }
        }
        .thumbnail {
            width: 25%;
            height: 90px;
            float: left;
            margin-top: 8px;
        }
    }
    .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;
                }
            }
        }
    }
}