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
| .modal-custom-edit-table {
| .editable-row {
| .ant-form-explain {
| position: absolute;
| font-size: 12px;
| margin-top: -4px;
| }
| .ant-select {
| width: 100%;
| }
| > td {
| padding: 14px 10px;
| }
| > td:last-child {
| padding: 0px;
| }
| }
| .ant-table-expanded-row {
| td[colspan="4"] {
| padding: 10px;
| .ant-table-wrapper {
| margin: 0;
| .ant-table-body {
| margin: 0;
| }
| }
| }
| }
| .editable-row:not(.print) {
| .ant-table-row-expand-icon-cell {
| div {
| display: none;
| }
| }
| }
|
| thead tr th:last-child {
| text-align: center;
| }
| .edit-operation-btn {
| display: block;
| text-align: center;
| span {
| margin-right: 10px;
| cursor: pointer;
| font-size: 16px;
| padding: 5px;
| }
| .primary {
| color: #1890ff;
| }
| span:last-child {
| margin-right: 0px;
| }
| }
| .edit-operation-btn.disabled {
| cursor: default;
| span {
| cursor: default;
| }
| .primary {
| color: rgba(0, 0, 0, .25);
| }
| }
| }
|
|