-
Notifications
You must be signed in to change notification settings - Fork 465
Expand file tree
/
Copy pathTrackSamplingInterval.css
More file actions
44 lines (37 loc) · 963 Bytes
/
TrackSamplingInterval.css
File metadata and controls
44 lines (37 loc) · 963 Bytes
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
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
.timelineTrackSamplingInterval {
position: relative;
}
.timelineTrackSamplingIntervalCanvas {
width: 100%;
height: var(--graph-height);
}
.timelineTrackSamplingIntervalGraph {
position: relative;
height: 100%;
cursor: default;
}
.timelineTrackSamplingIntervalTooltip {
display: grid;
gap: 2px 5px;
grid-template-columns: min-content minmax(0, 1fr);
}
.timelineTrackSamplingIntervalTooltipLabel {
color: var(--grey-50);
text-align: right;
white-space: nowrap;
}
.timelineTrackSamplingIntervalTooltipValue {
font-variant-numeric: tabular-nums;
}
.timelineTrackSamplingIntervalGraphDot {
position: absolute;
width: 6px;
height: 6px;
border-radius: 3px;
margin-top: -3px;
margin-left: -3px;
pointer-events: none;
}