modal-reset.less
888 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
.qx-data-flow__modal {
.ant-modal-header .ant-modal-title {
font-size: 16px;
font-weight: 600;
line-height: 24px;
color: @N9;
}
.ant-modal-close {
top: 16px;
right: 24px;
> .ant-modal-close-x {
width: 24px;
height: 24px;
padding: 0;
display: flex;
align-items: center;
justify-content: center;
.qx-data-flow__modal__close {
width: 24px;
height: 24px;
font-size: 12px !important;
display: flex;
align-items: center;
justify-content: center;
color: @N7;
&:hover {
color: @N9;
}
}
}
}
.ant-modal-footer {
padding: 8px 24px;
}
.ant-modal-body {
padding: 16px 18px 8px 24px;
max-height: 464px;
overflow-y: hidden;
scrollbar-gutter: stable;
&:hover {
overflow-y: auto;
}
}
}