king
2020-05-03 6def3330d1d1cf4036916ed04c8bbc4128e1e5d0
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
86
87
88
89
90
91
.model-table-search-list {
  padding: 1px 24px 20px;
  min-height: 87px;
  border-bottom: 1px solid #d9d9d9;
 
  .anticon-question-circle {
    color: #c49f47;
    position: relative;
    left: -15px;
    top: 5px;
  }
  > .ant-row {
    min-height: 65px;
  }
  .ant-row .ant-col-6 {
    padding: 0 12px!important;
  }
  .ant-row.ant-form-item .ant-col {
    padding: 0;
  }
  .page-card {
    position: relative;
    background: #ffffff;
    border-radius: 2px;
    padding-top: 15px;
    .ant-form-item {
      cursor: move;
      display: flex;
      margin-bottom: 0px;
      .ant-form-item-label {
        height: 40px;
        label {
          width: 100%;
          cursor: move;
          overflow: hidden;
          display: inline-block;
          text-overflow: ellipsis;
          white-space: nowrap;
        }
      }
      .ant-form-item-control-wrapper {
        flex: 1 1;
        .ant-select {
          width: 100%;
          margin-top: 4px;
        }
        .ant-calendar-picker {
          margin-top: 4px;
        }
        .input-mask {
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          opacity: 0;
          z-index: 2;
        }
        .data-range .ant-calendar-picker-input {
          padding: 4px 20px 4px 5px;
          font-size: 13px;
        }
      }
    }
    .edit {
      position: absolute;
      left: 0;
      top: 5px;
      color: #1890ff;
      cursor: pointer;
      display: none;
    }
    .edit.copy {
      left: 20px;
      color: #26C281;
    }
    .edit.close {
      left: 40px;
      color: #ff4d4f;
    }
  }
  .page-card:hover {
    .edit {
      display: inline-block;
    }
  }
  .ant-calendar-picker {
    min-width: 100px!important;
    width: 100%;
  }
}