classic.css
2.35 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
76
77
78
79
80
81
82
83
84
85
86
87
88
.picker {
font-size: 16px;
text-align: left;
line-height: 1.2;
color: #000;
position: absolute;
z-index: 10000;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none
}
.picker__input {
cursor: default
}
.picker__input.picker__input--active {
border-color: #0089ec
}
.picker__holder {
width: 100%;
overflow-y: auto;
-webkit-overflow-scrolling: touch
}
/*!
* Classic picker styling for pickadate.js
* Demo: http://amsul.github.io/pickadate.js
*/
.picker {
width: 100%
}
.picker__holder {
position: absolute;
background: #fff;
border: 1px solid #aaa;
border-top-width: 0;
border-bottom-width: 0;
-webkit-border-radius: 0 0 5px 5px;
-moz-border-radius: 0 0 5px 5px;
border-radius: 0 0 5px 5px;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
min-width: 176px;
max-width: 466px;
max-height: 0;
-ms-filter: "alpha(Opacity=0)";
filter: alpha(opacity=0);
-moz-opacity: 0;
opacity: 0;
-webkit-transform: translateY(-1em) perspective(600px) rotateX(10deg);
-moz-transform: translateY(-1em) perspective(600px) rotateX(10deg);
transform: translateY(-1em) perspective(600px) rotateX(10deg);
-webkit-transition: all .15s ease-out, max-height 0 .15s, border-width 0 .15s;
-moz-transition: all .15s ease-out, max-height 0 .15s, border-width 0 .15s;
transition: all .15s ease-out, max-height 0 .15s, border-width 0 .15s
}
.picker__frame {
padding: 1px
}
.picker__wrap {
margin: -1px
}
.picker--opened .picker__holder {
max-height: 25em;
-ms-filter: "alpha(Opacity=100)";
filter: alpha(opacity=100);
-moz-opacity: 1;
opacity: 1;
border-top-width: 1px;
border-bottom-width: 1px;
-webkit-transform: translateY(0) perspective(600px) rotateX(0);
-moz-transform: translateY(0) perspective(600px) rotateX(0);
transform: translateY(0) perspective(600px) rotateX(0);
-webkit-transition: all .15s ease-out, max-height 0, border-width 0;
-moz-transition: all .15s ease-out, max-height 0, border-width 0;
transition: all .15s ease-out, max-height 0, border-width 0;
-webkit-box-shadow: 0 6px 18px 1px rgba(0, 0, 0, .12);
-moz-box-shadow: 0 6px 18px 1px rgba(0, 0, 0, .12);
box-shadow: 0 6px 18px 1px rgba(0, 0, 0, .12)
}