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
| .common-excel-edit-table {
| margin-top: 30px;
| margin-left: -23px;
| margin-bottom: 15px;
| .add-row {
| position: absolute;
| z-index: 1;
| right: 12px;
| top: -10px;
| }
| .ant-table-thead > tr > th {
| padding: 10px 0px;
| text-align: center;
| }
| .ant-table-tbody > tr > td {
| padding: 0px 5px;
| .ant-input-number-input {
| padding: 0 3px;
| }
| .ant-input {
| padding: 0 3px;
| }
| }
| .editable-cell-value-wrap {
| cursor: pointer;
| height: 40px;
| width: 200px;
| display: table-cell;
| vertical-align: middle;
| word-wrap: break-word;
| word-break: break-word;
| .ant-input {
| height: 30px;
| }
| }
| .ant-form-item-control-wrapper {
| width: 100%;
| }
| .ant-table-placeholder {
| padding: 5px 16px;
| .ant-empty-normal {
| margin: 0;
| }
| }
| .operation-btn {
| margin-right: 10px;
| cursor: pointer;
| }
| }
|
|