blob: c418360df56ddc7ff4b331d711058a53496c3ed7 (
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
|
/*
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;
}
#timeline-view[selected] {
display: -webkit-box;
}
#timeline-view-timeline-container {
display: -webkit-box;
-webkit-box-flex: 1;
overflow: auto;
}
#timeline-view-timeline-container > .timeline {
-webkit-box-flex: 1;
}
#timeline-selection-summary-container {
border-top: 1px solid black;
max-height: 250px;
min-height: 250px;
font-family: monospace;
overflow: auto;
}
#timeline-selection-summary {
margin: 2px;
}
#timeline-selection-summary ul {
margin: 0px;
}
|