-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathtime-polyfill.scss
87 lines (74 loc) · 1.62 KB
/
time-polyfill.scss
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
/* !HTML5 Time polyfill | Jonathan Stipe | https://github.com/jonstipe/time-polyfill */
@mixin box-sizing($data) {
-moz-box-sizing: $data;
-webkit-box-sizing: $data;
box-sizing: $data;
}
@mixin border-radius($data...) {
-moz-border-radius: $data;
-webkit-border-radius: $data;
border-radius: $data;
}
div.time-spin-btn-container {
display: inline-block;
position: relative;
vertical-align: bottom;
margin: 0;
padding: 0;
}
div.time-spin-btn {
@include box-sizing(border-box);
border: 2px outset #CCCCCC;
background-color: #CCCCCC;
width: 1.2em;
}
div.time-spin-btn-up {
border-bottom-width: 1px;
@include border-radius(3px 3px 0px 0px);
}
div.time-spin-btn-up:before,
div.time-spin-btn-down:before {
content: "";
width: 0;
height: 0;
border-style: solid;
position: absolute;
left: 50%;
margin: -0.15em 0 0 -0.3em;
padding: 0;
}
div.time-spin-btn-up:before {
border: {
width: 0 0.3em 0.3em 0.3em;
color: transparent transparent black transparent;
}
top: 25%;
}
div.time-spin-btn-down {
border-top-width: 1px;
@include border-radius(0px 0px 3px 3px);
}
div.time-spin-btn-down:before {
border: {
width: 0.3em 0.3em 0 0.3em;
color: black transparent transparent transparent;
}
top: 75%;
}
div.time-spin-btn:hover {
cursor: pointer;
}
div.time-spin-btn:active {
border: 2px inset #999999;
background-color: #999999;
}
div.time-spin-btn-up:active:before {
border-color: transparent transparent white transparent;
top: 26%;
left: 51%;
}
div.time-spin-btn-down:active:before {
border-color: white transparent transparent transparent;
top: 76%;
left: 51%;
}