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
| .modal-edit-table {
| .editable-row {
| .ant-form-explain {
| position: absolute;
| font-size: 12px;
| margin-top: -4px;
| }
| .color-sketch-block {
| width: 200px;
| position: relative;
| top: 8px;
| }
| .ant-select {
| width: 100%;
| }
| > td {
| padding: 16px 10px;
| }
| }
| .operation-btn {
| span {
| margin-right: 10px;
| cursor: pointer;
| }
| .primary {
| color: #1890ff;
| }
| .danger {
| color: #ff4d4f;
| }
| }
| .operation-btn.disabled {
| cursor: default;
| span {
| cursor: default;
| }
| .primary {
| color: rgba(0, 0, 0, .25);
| }
| .danger {
| color: rgba(0, 0, 0, .25);
| }
| }
| .ant-empty {
| margin: 0;
| }
| }
|
|