king
3 天以前 047dbd742341e268ca772eda8d2ff0b6ba09cb44
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
66
67
68
69
70
71
72
.common-modal-edit-table {
  .add-row {
    position: absolute;
    z-index: 1;
    right: 10px;
    top: -30px;
    padding: 5px;
    font-size: 18px;
    color: #26C281;
  }
  .add-row-empty {
    font-size: 14px;
    right: 50px;
    line-height: 1.5;
    color: #1890ff;
    cursor: pointer;
  }
  .mk-move-col {
    text-align: center;
    font-size: 16px;
    cursor: move;
    color: #c8c8c8;
  }
  .mk-source-wrap {
    min-width: 150px;
  }
  .ant-table-thead > tr > th {
    padding: 10px 16px;
    position: relative;
 
    .anticon-swap {
      position: absolute;
      right: 12px;
      font-size: 14px;
      color: #b8b8b8;
    }
  }
  .ant-table-tbody > tr > td {
    padding: 5px 10px;
  }
  .editable-cell-value-wrap {
    cursor: pointer;
    height: 40px;
    width: 300px;
    display: table-cell;
    vertical-align: middle;
    word-wrap: break-word;
    word-break: break-word;
  }
  .ant-input {
    padding: 0 5px;
  }
  .ant-form-item-control-wrapper {
    width: 100%;
  }
  .ant-table-placeholder {
    padding: 5px 16px;
    .ant-empty-normal {
      margin: 0;
    }
  }
  .operation-btn {
    margin-right: 15px;
    cursor: pointer;
  }
  .editable-row.hide {
    text-decoration: line-through;
  }
  .ant-form-explain {
    font-size: 12px;
  }
}