king
2020-05-09 1a5b9707d0a06703f089fd426e20d78875c74c67
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
92
.model-table-column-list {
  position: relative;
  padding: 0px 20px 100px;
 
  .anticon-question-circle {
    color: #c49f47;
    position: relative;
    left: -15px;
    top: 5px;
  }
  .ant-switch {
    position: absolute;
    right: 20px;
    top: -10px;
  }
  .column-copy {
    position: absolute;
    font-size: 16px;
    right: 75px;
    top: -7px;
    color: #26C281;
  }
  > .ant-row {
    background: #fafafa;
    border-radius: 4px;
    min-height: 47px;
    border: 1px solid #e8e8e8;
    .column-box {
      display: flex;
    }
    .column-box:not(:first-child) {
      border-top: 1px solid #e8e8e8;
    }
    .page-card {
      position: relative;
      padding: 0px;
      min-height: 45px;
      > div {
        padding: 12px 0px 0px;
        cursor: move;
        height: 100%;
        .ant-table-column-sorters {
          padding: 0px 8px 12px;
        }
        .ant-table-column-fields {
          padding: 0px 8px 5px;
        }
      }
      .ant-table-column-sorter {
        position: relative;
        display: inline-block;
        width: 24px;
        font-size: 12px;
        color: #bfbfbf;
        .anticon-caret-up {
          position: relative;
          left: 10px;
          top: -3px;
        }
        .anticon-caret-down {
          position: relative;
          left: -2px;
          top: 3px;
        }
      }
      .edit {
        position: absolute;
        left: 0;
        top: 0px;
        color: #1890ff;
        cursor: pointer;
        display: none;
      }
      .edit.close {
        left: 20px;
        color: #ff4d4f;
      }
      .ant-checkbox-inner {
        margin-top: 14px;
        margin-left: calc(50% - 8px);
      }
    }
    .page-card:hover {
      .edit {
        display: inline-block;
      }
    }
    .page-card:not(:last-child) {
      border-right: 1px solid #e8e8e8;
    }
  }
}