king
2021-11-12 0c84df247914f893ef5e41d57a422e10a2dc814c
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
93
94
95
96
97
98
.model-table-column-list {
  position: relative;
  padding: 0px 20px 100px;
 
  .ant-switch {
    position: absolute;
    right: 20px;
    top: -10px;
  }
  .column-copy {
    position: absolute;
    font-size: 16px;
    right: 85px;
    top: -7px;
    color: #26C281;
  }
  > .ant-row {
    background: #fafafa;
    border-radius: 4px;
    min-height: 47px;
    border: 1px solid #e8e8e8;
    .column-box {
      display: flex;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .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;
          // white-space: nowrap;
        }
        .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;
        }
      }
      .ant-checkbox-inner {
        margin-top: 14px;
        margin-left: calc(50% - 8px);
      }
    }
    .page-card:not(:last-child) {
      border-right: 1px solid #e8e8e8;
    }
  }
}
 
.model-table-column-mark-modal {
  .ant-modal {
    top: 50px;
    padding-bottom: 5px;
    .ant-modal-body {
      max-height: calc(100vh - 190px);
      min-height: 350px;
      overflow-y: auto;
    }
    .ant-modal-body::-webkit-scrollbar {
      width: 7px;
    }
    .ant-modal-body::-webkit-scrollbar-thumb {
      border-radius: 5px;
      box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.13);
      background: rgba(0, 0, 0, 0.13);
    }
    .ant-modal-body::-webkit-scrollbar-track {
      box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.05);
      border-radius: 3px;
      border: 1px solid rgba(0, 0, 0, 0.07);
      background: rgba(0, 0, 0, 0);
    }
  }
}