forked from youzan/vant
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.less
More file actions
63 lines (54 loc) · 1.25 KB
/
index.less
File metadata and controls
63 lines (54 loc) · 1.25 KB
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
@import '../style/var';
.van-dropdown-menu {
display: flex;
height: @dropdown-menu-height;
background-color: @dropdown-menu-background-color;
user-select: none;
&__item {
display: flex;
flex: 1;
align-items: center;
justify-content: center;
min-width: 0; // hack for flex ellipsis
&:active {
opacity: @active-opacity;
}
&--disabled {
&:active {
opacity: 1;
}
.van-dropdown-menu__title {
color: @dropdown-menu-title-disabled-text-color;
}
}
}
&__title {
position: relative;
box-sizing: border-box;
max-width: 100%;
padding: @dropdown-menu-title-padding;
color: @dropdown-menu-title-text-color;
font-size: @dropdown-menu-title-font-size;
line-height: @dropdown-menu-title-line-height;
&::after {
position: absolute;
top: 50%;
right: -4px;
margin-top: -5px;
border: 3px solid;
border-color: transparent transparent currentColor currentColor;
transform: rotate(-45deg);
opacity: .8;
content: '';
}
&--active {
color: @dropdown-menu-title-active-text-color;
}
&--down {
&::after {
margin-top: -1px;
transform: rotate(135deg);
}
}
}
}