This repository has been archived by the owner on Mar 14, 2024. It is now read-only.
forked from thegrubbsian/jquery.ganttView
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathjquery.bookingsTimeline.css
132 lines (103 loc) · 2.29 KB
/
jquery.bookingsTimeline.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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
/*
jQuery.bookingsTimeline v.0.0.1
Copyright (c) 2011 Laurynas Butkus - laurynas.butkus@gmail.com
Copyright (c) 2010 JC Grubbs - jc.grubbs@devmynd.com
MIT License Applies
*/
div.bookingstimeline-hzheader-month,
div.bookingstimeline-hzheader-day,
div.bookingstimeline-vtheader,
div.bookingstimeline-vtheader-item-name,
div.bookingstimeline-vtheader-series,
div.bookingstimeline-grid,
div.bookingstimeline-grid-row-cell {
float: left;
}
div.bookingstimeline-hzheader-month,
div.bookingstimeline-hzheader-day {
text-align: center;
}
div.bookingstimeline-grid-row-cell.last,
div.bookingstimeline-hzheader-day.last,
div.bookingstimeline-hzheader-month.last {
border-right: none;
}
div.bookingstimeline {
border: 1px solid #999;
}
/* Horizontal Header */
div.bookingstimeline-hzheader-month {
width: 60px;
height: 20px;
border-right: 1px solid #d0d0d0;
line-height: 20px;
}
div.bookingstimeline-hzheader-day {
width: 20px;
height: 20px;
border-right: 1px solid #f0f0f0;
border-top: 1px solid #d0d0d0;
line-height: 20px;
color: #777;
}
/* Vertical Header */
div.bookingstimeline-vtheader {
margin-top: 41px;
width: 150px;
overflow: hidden;
background-color: #fff;
}
div.bookingstimeline-vtheader-item {
overflow: hidden;
color: #666;
}
div.bookingstimeline-vtheader-item-name {
width: 140px;
padding: 0 5px;
border-top: 1px solid #d0d0d0;
line-height: 16px;
}
/* Slider */
div.bookingstimeline-slide-container {
overflow: auto;
border-left: 1px solid #999;
}
/* Grid */
div.bookingstimeline-grid-row-cell {
width: 20px;
height: 31px;
border-right: 1px solid #f0f0f0;
border-top: 1px solid #f0f0f0;
}
div.bookingstimeline-grid-row-cell.bookingstimeline-weekend {
background-color: #fafafa;
}
/* Blocks */
div.bookingstimeline-blocks {
margin-top: 40px;
}
div.bookingstimeline-block-container {
height: 28px;
padding-top: 4px;
position: relative;
}
div.bookingstimeline-block {
position: absolute;
height: 25px;
background-color: #E5ECF9;
border: 1px solid #c0c0c0;
border-radius: 3px;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
}
div.bookingstimeline-block-text {
position: absolute;
height: 12px;
font-size: 0.8em;
color: #999;
padding: 2px 3px;
}
/* Adjustments for jQuery UI Styling */
div.bookingstimeline-block div.ui-resizable-handle.ui-resizable-s {
bottom: -0;
}