king
2025-05-23 24842b40de5cd60700bf69dfd38a0332f5431e36
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
 
.style-control-button, .style-control-button:hover, .style-control-button:focus {
  color: orange;
  border-color: orange;
  position: relative;
  z-index: 13;
  background: #ffffff;
}
body.style-control {
  .menu-setting::before, .mk-opeartion-list::before  {
    content: ' ';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    z-index: 12;
    background:rgba(0, 0, 0, 0.2);
  }
  .menu-setting .draw, .menu-control .draw {
    display: none;
  }
  .style-control-button {
    z-index: 12;
  }
  .menu-view {
    .anticon-tool {
      display: none;
    }
  }
  .mk-pc-view .menu-setting {
    display: none;
  }
  .mk-mob-view .mob-shell {
    .anticon-tool {
      display: none;
    }
  }
  .mk-popover-control-wrap {
    display: none;
  }
 
  .selected-control-element {
    box-shadow: 0px 0px 4px orange!important;
  }
  .selected-control-element:hover {
    box-shadow: 0px 0px 4px orange!important;
  }
  .normal-table-columns {
    .col-control {
      display: none;
    }
  }
}