index.less
861 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
.tableNew {
width: 100%;
height: 100%;
:global {
td {
height: 42px;
}
.ant-table-cell.ant-table-cell-ellipsis {
padding: 4px;
}
.ant-input-number {
width: 100%;
border-radius: 4px;
}
.ant-input,
.ant-input-number-input {
padding: 4px;
border-radius: 4px;
}
.editable-cell {
position: relative;
}
.editable-cell-value-wrap {
height: 30px;
line-height: 30px;
padding-left: 4px;
// padding: 5px 12px;
cursor: pointer;
}
.editable-row:hover .editable-cell-value-wrap {
// padding: 4px 11px;
box-shadow: inset 0 0 0 1px #d9d9d9;
border-radius: 4px;
}
.ant-form-item-additional {
position: absolute;
right: 2px;
bottom: 0;
div {
font-size: 12px;
}
}
}
}