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
|
| .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 {
| .pc-menu-view::before {
| content: ' ';
| position: absolute;
| left: 0;
| top: 0;
| bottom: 0;
| right: 0;
| z-index: 12;
| background:rgba(0, 0, 0, 0.2);
| }
| .pc-poper-view::before {
| content: ' ';
| position: absolute;
| left: 0;
| top: 0;
| bottom: 0;
| right: 0;
| z-index: 12;
| background:rgba(0, 0, 0, 0.2);
| }
| .menu-body .menu-view >.ant-card >.ant-card-body {
| position: relative;
| z-index: 13;
| background:#ffffff;
| }
| .menu-view {
| .anticon-tool {
| 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;
| }
| }
| }
|
|