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
| /**
| * 选择列表插件
| * varstion 2.0.0
| * by Houfeng
| * Houfeng@DCloud.io
| */
|
| .mui-picker {
| background-color: #ddd;
| position: relative;
| height: 200px;
| overflow: hidden;
| border: solid 1px rgba(0, 0, 0, 0.1);
| -webkit-user-select: none;
| user-select: none;
| box-sizing: border-box;
| }
| .mui-picker-inner {
| box-sizing: border-box;
| position: relative;
| width: 100%;
| height: 100%;
| overflow: hidden;
| -webkit-mask-box-image: -webkit-linear-gradient(bottom, transparent, transparent 5%, #fff 20%, #fff 80%, transparent 95%, transparent);
| -webkit-mask-box-image: linear-gradient(top, transparent, transparent 5%, #fff 20%, #fff 80%, transparent 95%, transparent);
| }
| .mui-pciker-list,
| .mui-pciker-rule {
| box-sizing: border-box;
| padding: 0px;
| margin: 0px;
| width: 100%;
| height: 36px;
| line-height: 36px;
| position: absolute;
| left: 0px;
| top: 50%;
| margin-top: -18px;
| }
| .mui-pciker-rule-bg {
| z-index: 0;
| /*background-color: #cfd5da;*/
| }
| .mui-pciker-rule-ft {
| z-index: 2;
| border-top: solid 1px rgba(0, 0, 0, 0.1);
| border-bottom: solid 1px rgba(0, 0, 0, 0.1);
| /*-webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);*/
| /*box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);*/
| }
| .mui-pciker-list {
| z-index: 1;
| -webkit-transform-style: preserve-3d;
| transform-style: preserve-3d;
| -webkit-transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
| transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
| }
| .mui-pciker-list li {
| width: 100%;
| height: 100%;
| position: absolute;
| text-align: center;
| vertical-align: middle;
| -webkit-backface-visibility: hidden;
| backface-visibility: hidden;
| overflow: hidden;
| box-sizing: border-box;
| font-size: 16px;
| font-family: "Helvetica Neue", "Helvetica", "Arial", "sans-serif";
| color: #888;
| padding: 0px 8px;
| white-space: nowrap;
| -webkit-text-overflow: ellipsis;
| text-overflow: ellipsis;
| overflow: hidden;
| cursor: default;
| visibility: hidden;
| }
| .mui-pciker-list li.highlight,
| .mui-pciker-list li.visible {
| visibility: visible;
| }
| .mui-pciker-list li.highlight {
| color: #222;
| }
|
|