king
2023-05-09 7b0dbecd1d6155d26ec67be0a47a16264c738c85
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
73
74
75
76
77
78
79
80
81
82
83
84
85
.params-edit-table {
  .add-row {
    position: absolute;
    z-index: 1;
    right: 10px;
    top: 0px;
    padding: 5px;
    font-size: 22px;
    color: #26C281;
  }
  .ant-table table {
    border-radius: 0;
  }
  .no-border {
    border-right: 0!important;
  }
  .ant-table-thead > tr {
    > th {
      padding: 10px 10px;
    }
    .ant-table-selection-column {
      .ant-table-header-column {
        display: none;
      }
    }
  }
  .ant-table-tbody {
    > tr {
      > td {
        background: #ffffff!important;
        padding: 2px 10px;
        .ant-input {
          height: 28px;
        }
        .ant-form-item {
          height: 30px;
          line-height: 30px;
          .ant-form-item-control {
            line-height: 30px;
          }
        }
        .anticon-close {
          opacity: 0;
        }
      }
    }
    > tr:hover {
      > td {
        background: #ffffff!important;
        .anticon-close {
          opacity: 1;
        }
      }
    }
  }
  .editable-cell-value-wrap {
    cursor: pointer;
    height: 36px;
    width: 300px;
    display: table-cell;
    vertical-align: middle;
    word-wrap: break-word;
    word-break: break-word;
    .ant-input {
      height: 30px;
      padding: 0 11px;
    }
  }
  .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;
  }
  .ant-form-explain {
    font-size: 12px;
  }
}