-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathstyle.css
88 lines (75 loc) · 2.23 KB
/
style.css
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
.NumberPicker__wrapper {
display: inline-block;
margin: 0;
padding: 3px 10px;
border-radius: 10px;
background-color: #FAFAFA;
border: 1px solid #E0E0E0;
background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.05) 0%, transparent 100%);
background: linear-gradient(to bottom, rgba(0, 0, 0, 0.05) 0%, transparent 100%);
/* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#12000000', endColorstr='#00000000',GradientType=0 ); }
.NumberPicker__wrapper:after {
display: block;
content: '';
clear: both; }
.NumberPicker__table {
display: table; }
.NumberPicker__row {
display: table-row; }
.NumberPicker__cell {
display: table-cell;
text-align: center;
vertical-align: middle;
min-width: 10px;
margin: 0;
padding: 0 5px 0 10px; }
.NumberPicker__cell > span.digit {
font-family: Tahoma, Geneva, sans-serif;
color: #616161;
font-size: 16pt; }
.NumberPicker__cell.decimal-separator {
padding-left: 0;
padding-right: 0; }
.NumberPicker__cell.decimal-separator > span.decimal-separator {
font-family: Tahoma, Geneva, sans-serif;
color: #616161;
font-weight: bold;
font-size: 16pt; }
.NumberPicker__cell > span {
/* prevents selecting when double clicking */
-webkit-user-select: none;
/* webkit (safari, chrome) browsers */
-moz-user-select: none;
/* mozilla browsers */
-khtml-user-select: none;
/* webkit (konqueror) browsers */
-ms-user-select: none;
/* IE10+ */ }
.NumberPicker__cell.currency > span.currency {
font-family: Tahoma, Geneva, sans-serif;
color: #616161;
font-weight: bold;
font-size: 16pt; }
.NumberPicker__cell.button.up {
padding-bottom: 5px; }
.NumberPicker__cell.button.down {
padding-top: 5px; }
.NumberPicker__cell.button > span {
cursor: pointer; }
.NumberPicker__cell.button > span.up {
position: relative;
top: -10px;
width: 0;
height: 0;
border-style: solid;
border-width: 0 5px 10px 5px;
border-color: transparent transparent #ddd transparent; }
.NumberPicker__cell.button > span.down {
position: relative;
top: 10px;
width: 0;
height: 0;
border-style: solid;
border-width: 10px 5px 0 5px;
border-color: #ddd transparent transparent transparent; }