OLD | NEW |
1 /* | 1 /* |
2 Copyright (c) 2012 The Chromium Authors. All rights reserved. | 2 * Copyright (c) 2012 The Chromium Authors. All rights reserved. |
3 Use of this source code is governed by a BSD-style license that can be | 3 * Use of this source code is governed by a BSD-style license that can be |
4 found in the LICENSE file. | 4 * found in the LICENSE file. |
5 */ | 5 */ |
| 6 |
| 7 .timeline * { |
| 8 -webkit-user-select: none; |
| 9 cursor: default; |
| 10 } |
6 | 11 |
7 .timeline-drag-box { | 12 .timeline-drag-box { |
8 background-color: rgba(0, 0, 255, 0.25); | 13 background-color: rgba(0, 0, 255, 0.25); |
9 border: 1px solid #000060 | 14 border: 1px solid #000060 |
10 font-size: 75%; | 15 font-size: 75%; |
11 position: fixed; | 16 position: fixed; |
12 } | 17 } |
13 | 18 |
14 .timeline-thread-track { | 19 .timeline-thread-track { |
15 -webkit-box-orient: vertical; | 20 -webkit-box-orient: vertical; |
16 display: -webkit-box; | 21 display: -webkit-box; |
17 padding: 1px 0; | 22 padding: 1px 0; |
| 23 position: relative; |
| 24 } |
| 25 |
| 26 .timeline-track-close-button { |
| 27 left: 0px; |
| 28 position: absolute; |
| 29 top: 0px; |
| 30 } |
| 31 |
| 32 .timeline-track-button { |
| 33 color: rgba(0,0,0,0.1); |
| 34 font-size: 10px; |
| 35 height: 12px; |
| 36 text-align: center; |
| 37 width: 12px; |
| 38 } |
| 39 .timeline-track-button:hover { |
| 40 border: 1px solid rgba(0, 0, 0, 0.2); |
| 41 border-radius: 25%; |
| 42 box-shadow: 0 0 .05em rgba(0,0,0,0.4); |
| 43 color: rgba(0,0,0,0.5); |
18 } | 44 } |
19 | 45 |
20 .timeline-thread-track:not(:first-child) { | 46 .timeline-thread-track:not(:first-child) { |
21 border-top: 1px solid #D0D0D0; | 47 border-top: 1px solid #D0D0D0; |
22 } | 48 } |
23 | 49 |
24 .timeline-canvas-based-track { | 50 .timeline-canvas-based-track { |
25 -webkit-box-orient: horizontal; | 51 -webkit-box-orient: horizontal; |
26 -webkit-box-align: stretch; | 52 -webkit-box-align: stretch; |
27 background-color: white; | 53 background-color: white; |
(...skipping 26 matching lines...) Expand all Loading... |
54 .timeline-viewport-track { | 80 .timeline-viewport-track { |
55 height: 12px; | 81 height: 12px; |
56 } | 82 } |
57 | 83 |
58 .timeline-slice-track { | 84 .timeline-slice-track { |
59 height: 18px; | 85 height: 18px; |
60 } | 86 } |
61 | 87 |
62 .timeline-counter-track { | 88 .timeline-counter-track { |
63 height: 30px; | 89 height: 30px; |
| 90 position: relative; |
64 } | 91 } |
OLD | NEW |