forked from krig/eventcontrol
-
Notifications
You must be signed in to change notification settings - Fork 0
/
eventcontrol.css
75 lines (65 loc) · 1.28 KB
/
eventcontrol.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
.eventcontrol {
/*background: #eee; */
color: #444;
background: #e3e3e3;
border-radius: 3px;
border: 1px solid #e0e0e0;
overflow: hidden;
position: relative;
width: 100%;
}
.eventcontrol .ec-items {
background: #fafafa;
/*border-radius: 3px;*/
}
.eventcontrol .ec-markers {
border-top: 1px solid #fff;
}
.eventcontrol .ec-dot {
position: absolute;
padding: 0;
width: 0px;
height: 0px;
border: 4px solid;
border-radius: 2px;
cursor:pointer;
background: #fff;
z-index: 1;
}
.eventcontrol .ec-markers .ec-ticks {
}
.eventcontrol .ec-markers .ec-ticks .ec-tick {
position: absolute;
width: 0px;
border-left: 1px solid #ececec;
}
.eventcontrol .ec-markers .ec-labels {
}
.eventcontrol .ec-label {
position: absolute;
padding: 0;
font-size: 12px;
text-align: left;
white-space: nowrap;
color: #777;
}
.eventcontrol .ec-region-label {
position: absolute;
padding: 0;
font-size: 10px;
font-weight: bold;
text-align: left;
white-space: nowrap;
color: #999;
}
.eventcontrol .ec-draggable {
cursor:hand;
cursor:grab;
cursor:-moz-grab;
cursor:-webkit-grab;
}
.eventcontrol .ec-dragging {
cursor:grabbing;
cursor:-moz-grabbing;
cursor:-webkit-grabbing;
}