index.wxss
1.6 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
64
65
66
67
68
69
70
71
72
73
74
75
@import '../common/index.wxss';
.van-dropdown-menu {
display: -webkit-flex;
display: flex;
-webkit-user-select: none;
user-select: none;
height: 50px;
height: var(--dropdown-menu-height, 50px);
}
.van-dropdown-menu__item {
display: -webkit-flex;
display: flex;
-webkit-flex: 1;
flex: 1;
-webkit-align-items: center;
align-items: center;
-webkit-justify-content: center;
justify-content: center;
min-width: 0
}
.van-dropdown-menu__item:active {
opacity: .7
}
.van-dropdown-menu__item--disabled:active {
opacity: 1
}
.van-dropdown-menu__item--disabled .van-dropdown-menu__title {
color: #969799;
color: var(--dropdown-menu-title-disabled-text-color, #969799)
}
.van-dropdown-menu__title {
position: relative;
box-sizing: border-box;
max-width: 100%;
padding: 0 8px;
padding: var(--dropdown-menu-title-padding, 0 8px);
color: #323233;
color: var(--dropdown-menu-title-text-color, #323233);
font-size: 15px;
font-size: var(--dropdown-menu-title-font-size, 15px);
line-height: 18px;
line-height: var(--dropdown-menu-title-line-height, 18px)
}
.van-dropdown-menu__title:after {
position: absolute;
top: 50%;
right: -4px;
margin-top: -5px;
border-color: transparent transparent currentcolor currentcolor;
border-style: solid;
border-width: 3px;
-webkit-transform: rotate(-45deg);
transform: rotate(-45deg);
opacity: .8;
content: ""
}
.van-dropdown-menu__title--active {
color: #ee0a24;
color: var(--dropdown-menu-title-active-text-color, #ee0a24)
}
.van-dropdown-menu__title--down:after {
margin-top: -1px;
-webkit-transform: rotate(135deg);
transform: rotate(135deg)
}