index.less
812 Bytes
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
@import "~@/mixins.less";
.abnormalEventReporting {
.size(100%, calc(100vh - 280px));
.flex();
gap: 10px;
background-color: #DCE2E8;
}
.leftPart {
.size(50%, 100%);
background-color: #FFF;
:global {
.ant-form-item[class*="subForm"] {
height: calc(100% - 80px) !important;
}
}
}
.rightPart {
.size(50%, 100%);
background-color: #FFF;
overflow: auto;
}
.runningStatus {
.size(100%, auto);
max-height: calc(100% - 210px);
overflow-x: hidden;
overflow-y: auto;
}
.runningBtn {
.flex();
justify-content: end;
}
.runningStatusCondition {
.size(auto, 100%);
position: absolute;
right: 0;
top: 0;
:global {
.ant-picker {
border: 1px solid #AAA;
border-radius: 5px;
}
.ant-radio-button-wrapper {
font-size: 18px;
}
}
}