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
| .dragdashboard {
| position: relative;
| z-index: 1;
| width: calc(100vw - 400px);
| float: left;
| background: #001529;
| padding-bottom: 5px;
| .card-add {
| border: 1px dashed gray;
| padding: 2px;
| margin-top: 13px;
| margin-left: 10px;
| width: 50px;
| float: left;
| text-align: center;
| cursor: pointer;
| }
| button {
| margin-top: 14px;
| margin-left: 10px;
| padding: 0 10px;
| height: 26px;
| }
| .btn-group {
| display: inline-block;
| }
| .card {
| position: relative;
| border: 1px dashed gray;
| 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;
| }
| }
| }
|
|