forked from wangeditor-team/wangEditor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmenus.less
More file actions
33 lines (30 loc) · 541 Bytes
/
menus.less
File metadata and controls
33 lines (30 loc) · 541 Bytes
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
.w-e-toolbar {
display: flex;
padding: 0 5px;
/* 单个菜单 */
.w-e-menu {
position: relative;
z-index: 10001;
text-align: center;
padding: 5px 10px;
cursor: pointer;
i {
color: #999;
}
&:hover {
i {
color: #333;
}
}
}
.w-e-active {
i {
color: #1e88e5;
}
&:hover {
i {
color: #1e88e5;
}
}
}
}