-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsubMenu.less
More file actions
54 lines (47 loc) · 873 Bytes
/
subMenu.less
File metadata and controls
54 lines (47 loc) · 873 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
.sideMenu-title {
padding: 8px 16px 8px 32px;
color: rgba(0,0,0,.43);
font-size: 12px;
line-height: 1.5;
font-weight: normal;
}
.sideMenu-ul {
box-sizing: border-box;
list-style-type: none;
padding: 0;
margin: 0;
outline: none;
&::after{
display:block;
clear:both;
content:".";
height:0;
visibility:hidden;
}
.sideMenu-li {
width: 200px;
height: 42px;
box-sizing: border-box;
line-height: 40px;
cursor: pointer;
.active {
color: #108ee9;
border-right: 3px solid #108ee9;
background-color: #ecf6fd;
}
}
.sideMenu-link {
color: #000;
text-decoration: none;
display: block;
padding-left: 48px;
white-space: nowrap;
transition: all .3s;
}
a.sideMenu-link:hover {
color: #108ee9 !important;
}
.sideMenu-icon {
margin-right: 8px;
}
}