king
2023-02-17 8137ac074ce6370e4b46295e7acf9c7870ef82d2
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
99
100
101
102
103
104
105
106
107
108
109
110
111
.menus-detail-modal {
  .ant-modal {
    top: 70px;
  }
  .ant-modal-body {
    min-height: 200px;
    .menu-line {
      display: flex;
      div {
        padding: 16px 16px;
        border-top: 1px solid #e8e8e8;
        border-left: 1px solid #e8e8e8;
        word-break: break-all;
      }
      div:last-child {
        border-right: 1px solid #e8e8e8;
      }
      .sort {
        width: 10%;
        text-align: center;
      }
      .sign {
        width: 35%;
      }
      .name {
        width: 35%;
      }
      .action {
        width: 20%;
        text-align: center;
        span {
          display: inline-block;
          padding: 0 10px;
          cursor: pointer;
          color: #1890ff;
        }
      }
    }
    .menu-line:first-child {
      background-color: #fafafa;
    }
    .menu-line:last-child {
      div {
        border-bottom: 1px solid #e8e8e8;
      }
    }
  }
}
 
.card-control {
  position: absolute;
  top: 0px;
  left: 0px;
  .anticon-tool {
    position: absolute;
    left: 1px;
    top: 1px;
    padding: 1px;
    z-index: 2;
    font-size: 16px;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.55);
  }
}
 
.card-item {
  >.circle-select {
    position: relative;
    display: none;
    width: 16px;
    height: 16px;
    border: 1px solid #cccccc;
    border-radius: 50%;
    box-sizing: content-box;
    margin: auto;
    margin-right: 5px;
    background-color: #ffffff;
    transition: border-color 0.2s;
    cursor: pointer;
  }
  >.anticon-up {
    position: absolute;
    bottom: 10px;
    right: 10px;
    display: none;
  }
  >.anticon-plus-square {
    margin: auto 5px;
    font-size: 18px;
  }
}
// square
.card-item.mk-checkable {
  display: flex;
  .circle-select {
    display: inline-block;
  }
  .model-menu-card-cell-list {
    flex: 1;
  }
}
.card-item.mk-checkable.square {
  .circle-select {
    border-radius: 0;
  }
}
.card-item.mk-unfold, .card-item.mk-collapse {
  >.anticon-up {
    display: inline-block;
  }
}