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
| .dragdashboard {
| position: relative;
| z-index: 1;
| width: calc(100vw - 350px);
| float: left;
| background: #001529;
| padding-bottom: 5px;
|
| button {
| margin-top: 14px;
| margin-left: 10px;
| padding: 0 10px;
| height: 26px;
| }
|
| .btn-group {
| display: inline-block;
| }
| .card {
| position: relative;
| border: 1px dashed #535353;
| margin-top: 8px;
| margin-right: 5px;
| float: left;
| div {
| padding: 3px 6px;
| font-size: 16px;
| cursor: move;
| min-width: 43px;
| max-width: 85px;
| overflow: hidden;
| text-overflow: ellipsis;
| white-space: nowrap;
| }
| }
| }
|
| .mk-popover-control-wrap.header-menu {
| .ant-popover-content {
| position: relative;
| top: -8px;
| .ant-popover-arrow {
| top: -3.8px!important;
| }
| }
| }
|
|