blob: 22258316228b646bbe559f7d26ffb5b68f95c328 (
plain)
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
|
/*
Copyright (c) 2011 The Chromium Authors. All rights reserved.
Use of this source code is governed by a BSD-style license that can be
found in the LICENSE file.
*/
.timeline-drag-box {
position: fixed;
background-color: rgba(0, 0, 255, 0.25);
border: 1px solid rgb(0, 0, 96);
font-size: 75%;
}
.timeline-thread-track {
display: -webkit-box;
-webkit-box-orient: vertical;
padding-top: 1px;
padding-bottom: 1px;
}
.timeline-thread-track:not(:first-child) {
border-top: 1px solid #D0D0D0;
}
.timeline-slice-track {
display: -webkit-box;
-webkit-box-orient: horizontal;
-webkit-box-align: stretch;
background-color: white;
padding-right: 5px;
margin: 0;
padding: 0;
height: 18px;
}
.timeline-slice-track-title {
text-align: right;
overflow: visible;
width: 300px;
padding-right: 5px;
}
.timeline-slice-track-canvas-container {
-webkit-box-flex: 1;
width: 100%;
}
.timeline-slice-track-canvas {
-webkit-box-flex: 1;
width: 100%;
height: 100%;
}
|