OLD | NEW |
| (Empty) |
1 /* | |
2 * Copyright (c) 2015 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 | |
7 .resources-dividers { | |
8 position: absolute; | |
9 left: 0; | |
10 right: 0; | |
11 top: 0; | |
12 z-index: -100; | |
13 bottom: 0; | |
14 } | |
15 | |
16 .resources-event-dividers { | |
17 position: absolute; | |
18 left: 0; | |
19 right: 0; | |
20 height: 100%; | |
21 top: 0; | |
22 z-index: 300; | |
23 pointer-events: none; | |
24 } | |
25 | |
26 .resources-dividers-label-bar { | |
27 position: absolute; | |
28 top: 0; | |
29 left: 0; | |
30 right: 0; | |
31 background-color: rgba(255, 255, 255, 0.85); | |
32 background-clip: padding-box; | |
33 height: 20px; | |
34 z-index: 200; | |
35 pointer-events: none; | |
36 overflow: hidden; | |
37 } | |
38 | |
39 .resources-divider { | |
40 position: absolute; | |
41 width: 1px; | |
42 top: 0; | |
43 bottom: 0; | |
44 background-color: rgba(0, 0, 0, 0.1); | |
45 } | |
46 | |
47 .resources-event-divider { | |
48 position: absolute; | |
49 width: 2px; | |
50 top: 0; | |
51 bottom: 0; | |
52 z-index: 300; | |
53 } | |
54 | |
55 .resources-divider-label { | |
56 position: absolute; | |
57 top: 4px; | |
58 right: 3px; | |
59 font-size: 80%; | |
60 white-space: nowrap; | |
61 pointer-events: none; | |
62 } | |
63 | |
64 .timeline-grid-header { | |
65 height: 20px; | |
66 pointer-events: none; | |
67 } | |
OLD | NEW |