| OLD | NEW |
| 1 /* | 1 /* 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 | 2 * Use of this source code is governed by a BSD-style license that can be |
| 4 * found in the LICENSE file. | 3 * found in the LICENSE file. |
| 5 */ | 4 */ |
| 6 | 5 |
| 7 .timeline * { | 6 .timeline * { |
| 8 -webkit-user-select: none; | 7 -webkit-user-select: none; |
| 9 cursor: default; | 8 cursor: default; |
| 10 } | 9 } |
| 11 | 10 |
| 12 .timeline-drag-box { | 11 .timeline-drag-box { |
| 13 background-color: rgba(0, 0, 255, 0.25); | 12 background-color: rgba(0, 0, 255, 0.25); |
| 14 border: 1px solid #000060 | 13 border: 1px solid rgb(0, 0, 96); |
| 15 font-size: 75%; | 14 font-size: 75%; |
| 16 position: fixed; | 15 position: fixed; |
| 17 } | 16 } |
| 18 | 17 |
| 19 .timeline-thread-track { | 18 .timeline-thread-track { |
| 20 -webkit-box-orient: vertical; | 19 -webkit-box-orient: vertical; |
| 21 display: -webkit-box; | 20 display: -webkit-box; |
| 22 padding: 1px 0; | 21 padding: 1px 0; |
| 23 position: relative; | 22 position: relative; |
| 24 } | 23 } |
| 25 | 24 |
| 26 .timeline-track-button { | 25 .timeline-track-button { |
| 27 background-color: rgba(255, 255, 255, 0.5); | 26 background-color: rgba(255, 255, 255, 0.5); |
| 28 border: 1px solid rgba(0, 0, 0, 0.1); | 27 border: 1px solid rgba(0, 0, 0, 0.1); |
| 29 color: rgba(0,0,0,0.2); | 28 color: rgba(0,0,0,0.2); |
| 30 font-size: 10px; | 29 font-size: 10px; |
| 31 height: 12px; | 30 height: 12px; |
| 32 text-align: center; | 31 text-align: center; |
| 33 width: 12px; | 32 width: 12px; |
| 34 } | 33 } |
| 35 | 34 |
| 36 .timeline-track-button:hover { | 35 .timeline-track-button:hover { |
| 37 background-color: rgba(255, 255, 255, 1.0); | 36 background-color: rgba(255, 255, 255, 1.0); |
| 38 border: 1px solid rgba(0, 0, 0, 0.5); | 37 border: 1px solid rgba(0, 0, 0, 0.5); |
| 39 border-radius: 25%; | 38 border-radius: 25%; |
| 40 box-shadow: 0 0 .05em rgba(0,0,0,0.4); | 39 box-shadow: 0 0 .05em rgba(0, 0, 0, 0.4); |
| 41 color: rgba(0,0,0,1); | 40 color: rgba(0, 0, 0, 1); |
| 42 } | 41 } |
| 43 | 42 |
| 44 .timeline-track-close-button { | 43 .timeline-track-close-button { |
| 45 left: 0px; | 44 left: 0; |
| 46 position: absolute; | 45 position: absolute; |
| 47 top: 0px; | 46 top: 0; |
| 48 } | 47 } |
| 49 | 48 |
| 50 .timeline-track-collapse-button { | 49 .timeline-track-collapse-button { |
| 51 left: 15px; | 50 left: 15px; |
| 52 position: absolute; | 51 position: absolute; |
| 53 top: 0px; | 52 top: 0; |
| 54 } | 53 } |
| 55 | 54 |
| 56 .timeline-thread-track:not(:first-child) { | 55 .timeline-thread-track:not(:first-child) { |
| 57 border-top: 1px solid #D0D0D0; | 56 border-top: 1px solid #D0D0D0; |
| 58 } | 57 } |
| 59 | 58 |
| 60 .timeline-canvas-based-track { | 59 .timeline-canvas-based-track { |
| 60 -webkit-box-align: stretch; |
| 61 -webkit-box-orient: horizontal; | 61 -webkit-box-orient: horizontal; |
| 62 -webkit-box-align: stretch; | |
| 63 background-color: white; | 62 background-color: white; |
| 64 display: -webkit-box; | 63 display: -webkit-box; |
| 65 margin: 0; | 64 margin: 0; |
| 66 padding: 0; | 65 padding: 0 5px 0 0; |
| 67 padding-right: 5px; | |
| 68 } | 66 } |
| 69 | 67 |
| 70 .timeline-canvas-based-track-title { | 68 .timeline-canvas-based-track-title { |
| 71 overflow: hidden; | 69 overflow: hidden; |
| 72 padding-right: 5px; | 70 padding-right: 5px; |
| 73 text-align: right; | 71 text-align: right; |
| 74 text-overflow: ellipsis; | 72 text-overflow: ellipsis; |
| 75 white-space: nowrap; | 73 white-space: nowrap; |
| 76 } | 74 } |
| 77 | 75 |
| (...skipping 14 matching lines...) Expand all Loading... |
| 92 } | 90 } |
| 93 | 91 |
| 94 .timeline-slice-track { | 92 .timeline-slice-track { |
| 95 height: 18px; | 93 height: 18px; |
| 96 } | 94 } |
| 97 | 95 |
| 98 .timeline-counter-track { | 96 .timeline-counter-track { |
| 99 height: 30px; | 97 height: 30px; |
| 100 position: relative; | 98 position: relative; |
| 101 } | 99 } |
| OLD | NEW |