| OLD | NEW |
| 1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 * 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 |
| 3 * found in the LICENSE file. | 3 * found in the LICENSE file. */ |
| 4 */ | |
| 5 | 4 |
| 6 .timeline * { | 5 .timeline * { |
| 7 -webkit-user-select: none; | 6 -webkit-user-select: none; |
| 8 cursor: default; | 7 cursor: default; |
| 9 } | 8 } |
| 10 | 9 |
| 11 .timeline-drag-box { | 10 .timeline-drag-box { |
| 12 background-color: rgba(0, 0, 255, 0.25); | 11 background-color: rgba(0, 0, 255, 0.25); |
| 13 border: 1px solid rgb(0, 0, 96); | 12 border: 1px solid rgb(0, 0, 96); |
| 14 font-size: 75%; | 13 font-size: 75%; |
| (...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 90 } | 89 } |
| 91 | 90 |
| 92 .timeline-slice-track { | 91 .timeline-slice-track { |
| 93 height: 18px; | 92 height: 18px; |
| 94 } | 93 } |
| 95 | 94 |
| 96 .timeline-counter-track { | 95 .timeline-counter-track { |
| 97 height: 30px; | 96 height: 30px; |
| 98 position: relative; | 97 position: relative; |
| 99 } | 98 } |
| OLD | NEW |