forked from CrowdStrike/ember-timetree
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtimetree_basic.css
118 lines (94 loc) · 2.52 KB
/
timetree_basic.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
.timetree-view, .timetree-brush-view {
shape-rendering: crispEdges;
}
.timetree-view text, .timetree-brush-view text {
shape-rendering: geometricPrecision;
-webkit-user-select: none;
-moz-user-select: none;
user-select: none;
}
.timetree-view .row, .timetree-brush-view .row {
fill: transparent;
cursor: pointer;
}
.timetree-view .row.hover, .timetree-brush-view .row.hover {
fill: #e3e3e3;
}
.timetree-view .row.selected, .timetree-brush-view .row.selected {
fill: #e3e3e3;
}
.timetree-view .link, .timetree-brush-view .link {
fill: none;
stroke: #b3b3b3;
stroke-width: 1px;
}
.timetree-view .label text, .timetree-brush-view .label text {
cursor: pointer;
fill: #1a1a1a;
}
.timetree-view .label circle, .timetree-brush-view .label circle {
display: none;
shape-rendering: geometricPrecision;
}
.timetree-view .label.has-children circle, .timetree-brush-view .label.has-children circle {
fill: white;
stroke: #626366;
stroke-width: 2;
display: block;
cursor: pointer;
}
.timetree-view .label.has-children .text, .timetree-brush-view .label.has-children .text {
transform: translate(0, 0);
}
.timetree-view .label.has-children.closed circle, .timetree-brush-view .label.has-children.closed circle {
fill: #626366;
}
.timetree-view .axis .axis-label, .timetree-brush-view .axis .axis-label {
fill: #b3b3b3;
text-anchor: middle;
}
.timetree-view .axis .axis-label:nth-child(1), .timetree-brush-view .axis .axis-label:nth-child(1) {
text-anchor: start;
}
.timetree-view .axis .axis-label:last-child, .timetree-brush-view .axis .axis-label:last-child {
text-anchor: end;
}
.timetree-view .seperator, .timetree-brush-view .seperator {
stroke-width: 2;
stroke: #e6e6e6;
}
.timetree-view .scrubber line, .timetree-brush-view .scrubber line {
stroke: #1a1a1a;
stroke-width: 2;
}
.timetree-view .brush .extent, .timetree-brush-view .brush .extent {
stroke: #fff;
fill-opacity: .125;
}
.timetree-view .duration, .timetree-view .section {
fill: #626366;
}
.timetree-view .duration text, .timetree-brush-view .duration text {
display: none;
fill: #fff;
}
.timetree-view .sectional .whole {
visibility: hidden;
}
.timetree-view .hover text, .timetree-brush-view .hover text {
display: block;
}
.timetree-view {
border-bottom: solid 2px #e6e6e6;
}
.timetree-brush-view {
border-left: solid 2px #e6e6e6;
}
.timetree-brush-view .x.axis path, .timetree-brush-view .x.axis line {
fill: none;
stroke: #626366;
stroke-width: 2px;
}
.timetree-brush-view .x.axis .domain {
display: none;
}