-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathtime-polyfill.css
More file actions
65 lines (55 loc) · 1.58 KB
/
time-polyfill.css
File metadata and controls
65 lines (55 loc) · 1.58 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
/* !HTML5 Time polyfill | Jonathan Stipe | https://github.com/jonstipe/time-polyfill */
div.time-spin-btn-container {
display: inline-block;
position: relative;
vertical-align: bottom;
margin: 0;
padding: 0; }
div.time-spin-btn {
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
border: 2px outset #CCCCCC;
background-color: #CCCCCC;
width: 1.2em; }
div.time-spin-btn-up {
border-bottom-width: 1px;
-moz-border-radius: 3px 3px 0px 0px;
-webkit-border-radius: 3px 3px 0px 0px;
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;
border-color: transparent transparent black transparent;
top: 25%; }
div.time-spin-btn-down {
border-top-width: 1px;
-moz-border-radius: 0px 0px 3px 3px;
-webkit-border-radius: 0px 0px 3px 3px;
border-radius: 0px 0px 3px 3px; }
div.time-spin-btn-down:before {
border-width: 0.3em 0.3em 0 0.3em;
border-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%; }