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
83
84
85
86
87
88
89
.sider-drawer {
.ivu-drawer-body {
padding: 0px;
}
.context-menu-drag {
display: flex;
.flip-list-move {
transition: transform 0.3s;
}
.context-menu__list {
width: 100%;
height: 100%;
.context-menu__list__header {
cursor: pointer;
border-bottom: 1px solid ;
height: 48px;
line-height: 48px;
display: flex;
align-items: center;
.header__menuicon {
display: inline-block;
width: 50px;
font-size: 16px;
text-align: center;
font-size: 22px;
}
.header__content {
display: inline-block;
text-overflow: ellipsis;
white-space: nowrap;
flex: 1 1 0%;
overflow: hidden;
font-size: 13px;
}
.header__forward {
margin: 0px 8px 0px 4px;
font-size: 15px;
}
}
.context-menu__list__content {
padding: 8px 0px;
.content__item {
display: flex;
align-items: center;
height: 36px;
padding: 6px 12px;
cursor: pointer;
.icon {
display: inline-block;
line-height: 36px;
}
.caption {
font-size: 16px;
display: inline-block;
margin-left: 8px;
line-height: 36px;
}
}
.content__item:hover {
color: #2d8df3;
}
}
}
}
}
.style-top {
.ivu-drawer {
top: 41px ;
}
}
.default-top {
.ivu-drawer {
top: 50px;
}
}