forked from linkedin/parseq
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwaterfall.css
More file actions
51 lines (43 loc) · 1.01 KB
/
waterfall.css
File metadata and controls
51 lines (43 loc) · 1.01 KB
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
.waterfallview .trace rect { stroke: #999; }
.waterfallview .trace rect { fill: #ACACAC; }
.waterfallview .trace rect.success { fill: #60D060; }
.waterfallview .trace rect.error { fill: #FF6F6F; }
.waterfallview .trace rect.early_finish { fill: #FFFD76; }
.waterfallview .trace circle {
fill: #FFFFFF;
stroke: #333;
stroke-width: 1px;
}
.waterfallview .trace line {
stroke: #333;
stroke-width: 1px;
stroke-linecap: round;
stroke-dasharray: 3;
}
.waterfallview .trace text,
.waterfallview .trace text tspan {
fill: #333;
font-family: arial;
}
.waterfallview .trace.composite {
cursor: pointer;
}
.waterfallview .x-axis path,
.waterfallview .x-axis line {
pointer-events: none;
fill: none;
stroke: black;
shape-rendering: crispEdges;
stroke-opacity: .1;
}
.waterfallview .x-axis .minor-grid line {
stroke-opacity: .05;
}
.waterfallview {
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}