king
2021-05-31 ce70be666bcd78a7e16e739040488cf7e7256cc2
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
.modal-card-data-table {
  .add-row {
    position: absolute;
    z-index: 1;
    right: 10px;
    top: -30px;
    padding: 5px;
    font-size: 18px;
    color: #26C281;
  }
  .editable-row {
    .ant-form-explain {
      position: absolute;
      font-size: 12px;
      margin-top: -4px;
    }
    .ant-form-item-control {
      line-height: 1;
    }
    > td {
      padding: 16px 10px;
    }
    .fileupload-form-container .ant-upload-list-picture-card .ant-upload-list-item {
      margin: 0;
      padding: 2px;
      .ant-upload-list-item-info > span {
        height: 100%;
      }
    }
  }
  .operation-btn {
    font-size: 16px;
    text-align: center;
    span {
      margin-right: 15px;
      cursor: pointer;
    }
    .primary {
      color: #1890ff;
    }
    .danger {
      color: #ff4d4f;
    }
  }
  .operation-btn.disabled {
    span {
      cursor: default;
    }
    .primary {
      color: rgba(0, 0, 0, .25);
    }
    .danger {
      color: rgba(0, 0, 0, .25);
    }
  }
  tr.drop-over-downward td {
    border-bottom: 2px dashed #1890ff;
  }
  tr.drop-over-upward td {
    border-top: 2px dashed #1890ff;
  }
}