king
2020-09-24 6ed64ed071c75901ed8848131bfefa51c5c27fce
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
.menu-data-card-edit-box {
  position: relative;
  box-sizing: border-box;
  background: #ffffff;
  
  .anticon-tool {
    position: absolute;
    z-index: 1;
    font-size: 16px;
    right: 0;
    top: 0;
    cursor: pointer;
    padding: 10px;
  }
 
  .card-item {
    position: relative;
    min-height: 50px;
    border: 1px solid #e8e8e8;
  }
  
  .card-item:hover {
    box-shadow: 0px 0px 2px #e8e8e8;
  }
 
  .model-menu-card-cell-list .card-detail-row > .anticon-plus {
    position: absolute;
    right: -30px;
    font-size: 16px;
  }
  .model-menu-action-list {
    min-height: 40px;
    line-height: 40px;
    .ant-row > .anticon-plus {
      position: absolute;
      right: -30px;
      font-size: 16px;
    }
  }
}
.menu-data-card-edit-box::after {
  display: block;
  content: ' ';
  clear: both;
}
.menu-data-card-edit-box:hover {
  box-shadow: 0px 0px 2px #e8e8e8;
}