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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
| .mk-msg-icon {
| font-size: 16px;
| margin-top: 17px;
| margin-right: 20px;
| margin-left: 0px;
| color: #1CD66C;
| cursor: pointer;
| }
| .mk-msg-icon[data-title] {
| position: relative;
|
| &::before {
| content: " ";
| position: absolute;
| top: 6px;
| left: 2px;
| z-index: -1;
| width: 12px;
| height: 3px;
| display: block;
| background: #fff;
| }
| &::after {
| position: absolute;
| top: -10px;
| left: 15px;
| color: #f5222d;
| font-size: 12px;
| line-height: 16px;
| white-space: nowrap;
| font-weight: 600;
| content: attr(data-title);
| }
| }
| .mk-msg-wrap {
| position: fixed;
| width: 200px;
| height: 400px;
| top: 92px;
| right: 15px;
| z-index: -1;
| opacity: 0;
| padding: 10px;
| font-size: 13px;
| background-color: #fff;
| background-clip: padding-box;
| color: rgba(0, 0, 0, 0.85);
| border: 0;
| border-radius: 4px;
| -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
| box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
| pointer-events: auto;
| transition: all 0.2s;
|
| .title {
| text-align: center;
|
| .anticon-close {
| position: absolute;
| right: 10px;
| color: rgba(0, 0, 0, 0.45);
| cursor: pointer;
| transition: color 0.2s;
| }
| .anticon-close:hover {
| color: rgba(0, 0, 0, 0.85);
| }
| }
| .msg-list {
| .msg-item {
| height: 80px;
| background: rgba(0, 0, 0, 0.05);
| margin: 10px 0px;
| padding: 5px;
| border-radius: 2px;
| }
| }
| }
| .mk-msg-wrap.visible {
| z-index: 3000;
| opacity: 1;
| }
|
|