king
2020-09-23 0de207ebed200dffca41b8c974d1394cf328b03e
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
.menu-shell-inner {
  min-height: calc(100vh - 150px);
  padding: 16px;
  width: 100%;
  background-size: 100%;
 
  >.ant-row {
    margin-left: -4px;
    margin-right: -4px;
    margin-top: -4px;
    >.ant-col {
      padding: 8px;
    }
    > .mk-component-card:hover {
      > .remove-component {
        opacity: 1;
      }
      > div {
        > .model-datasource > .anticon-setting, > .model-menu-tabs-setting > .anticon-setting {
          opacity: 1;
        }
      }
    }
  }
  .anticon {
    cursor: unset;
  }
 
  .mk-component-card {
    position: relative;
    .remove-component {
      position: absolute;
      right: 42px;
      top: -16px;
      color: #ff4d4f;
      border-radius: 2px;
      font-size: 16px;
      padding: 5px;
      cursor: pointer;
      opacity: 0;
      transition: opacity 0.2s;
    }
  }
  
  >.ant-empty {
    padding-top: 150px;
  }
 
  .model-datasource > .anticon-setting, .model-menu-tabs-setting > .anticon-setting {
    font-size: 16px;
    padding: 5px;
    position: absolute;
    right: 0px;
    top: -30px;
    opacity: 0;
    cursor: pointer;
    transition: opacity 0.2s;
  }
}