Newer
Older
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
89
#timelineContainer {
position: relative;
width: 100%;
height: 100%;
}
#timelineTable {
position: inherit;
top: 0px;
left: 0px;
overflow: visible;
}
#timelineTable text {
font-size: medium;
padding: 0px;
margin: 0px;
}
#timelineTable,
#timelineTable tbody,
#timelineTable tr,
#timelineTable td {
margin: 0px;
padding: 0px;
height: inherit;
overflow: visible;
}
#timelineTable .timelineStep {
height: 30px !important;
max-height: 30px;
}
#timelineTable .timelineStep > .timelineStepLabel {
width: 30px;
height: inherit;
border: none;
font-size: small;
text-align: right;
vertical-align: text-top;
}
#timelineTable .timelineScale {
width: 10px;
height: inherit;
border-style: solid none solid;
}
#timelineTable .timelineStep > .timelineCell {
width: 50px;
height: inherit;
border-bottom: 1px solid gainsboro;
border-top: 1px solid gainsboro;
border-left: 2px solid gainsboro;
border-right: 2px solid gainsboro;
}
#timelineTable .timelineCellMarked {
width: 10px;
height: inherit;
background-color: #1ABC9C;
}
#timelineContainer .resizableEvent {
height: inherit;
min-height: inherit;
width: inherit;
background-color: #1ABC9C;
border: 1px solid gray;
position: absolute;
top: inherit;
left: inherit;
}
#timelineTable .ui-draggable-handle {
cursor: move;
}
#timelineTable .ui-resizable-s {
position: absolute;
cursor: s-resize;
height: 7px;
width: 100%;
bottom: -5px;
left: 0;
cursor: s-resize;
}