blob: 98281372521f4c9ae53f04cf63a5bd0a52d84fe3 (
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
|
/*
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-view {
padding: 0px;
-webkit-box-orient: vertical;
-webkit-box-flex: 1;
display: -webkit-box;
}
.timeline-view > .timeline {
display: -webkit-box;
-webkit-box-flex: 1;
overflow: auto;
}
.timeline-view .timeline-container {
-webkit-box-flex: 1;
display: -webkit-box;
overflow: auto;
}
.timeline-view .timeline-container > * {
-webkit-box-flex: 1;
}
.timeline-view .summary-container * {
-webkit-user-select: text;
}
.timeline-view .summary-container {
border-top: 1px solid black;
max-height: 250px;
min-height: 250px;
font-family: monospace;
overflow: auto;
}
.timeline-view .selection {
margin: 2px;
}
.timeline-view .selection ul {
margin: 0px;
}
|