OLD | NEW |
| (Empty) |
1 /* | |
2 Copyright (c) 2011 The Chromium Authors. All rights reserved. | |
3 Use of this source code is governed by a BSD-style license that can be | |
4 found in the LICENSE file. | |
5 */ | |
6 .timeline-view { | |
7 padding: 0px; | |
8 -webkit-box-orient: vertical; | |
9 -webkit-box-flex: 1; | |
10 display: -webkit-box; | |
11 } | |
12 | |
13 .timeline-view > .timeline { | |
14 display: -webkit-box; | |
15 -webkit-box-flex: 1; | |
16 overflow: auto; | |
17 } | |
18 | |
19 .timeline-view .timeline-container { | |
20 -webkit-box-flex: 1; | |
21 display: -webkit-box; | |
22 overflow: auto; | |
23 } | |
24 | |
25 .timeline-view .timeline-container > * { | |
26 -webkit-box-flex: 1; | |
27 } | |
28 .timeline-view .summary-container * { | |
29 -webkit-user-select: text; | |
30 } | |
31 | |
32 .timeline-view .summary-container { | |
33 border-top: 1px solid black; | |
34 max-height: 250px; | |
35 min-height: 250px; | |
36 font-family: monospace; | |
37 overflow: auto; | |
38 } | |
39 | |
40 .timeline-view .selection { | |
41 margin: 2px; | |
42 } | |
43 | |
44 .timeline-view .selection ul { | |
45 margin: 0px; | |
46 } | |
OLD | NEW |