-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgantt.css
49 lines (43 loc) · 877 Bytes
/
gantt.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
.month_timeline {
display: inline-block;
border-right: thin black solid;
min-width: 173.3px;
color: red;
text-align: center;
}
.quarter_timeline {
display: inline-block;
border-right: thin black solid;
min-width: 520px;
color: red;
text-align: center;
}
#header {
overflow: hidden;
height: 1em;
padding-left: 340px;
}
.summary {
display: inline-block;
margin-right: 10px;
text-overflow: ellipsis;
overflow: hidden;
height: 1em;
border-bottom: thin solid gray;
padding-left:5px;
}
.subbugs {
border-left: thin solid gray;
margin-left: 10px;
}
.estimate {
display: inline-block;
height: 10px;
background-color: rgb(63, 127, 127);
border: thin rgb(47, 95, 95) solid;
}
.complete {
display: inline-block;
height: 100%;
background-color: rgb(127, 255, 255);
}