| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2015 The Chromium Authors. All rights reserved. | 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 | 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 | 6 |
| 7 .resources-dividers { | 7 .resources-dividers { |
| 8 position: absolute; | 8 position: absolute; |
| 9 left: 0; | 9 left: 0; |
| 10 right: 0; | 10 right: 0; |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 58 right: 3px; | 58 right: 3px; |
| 59 font-size: 80%; | 59 font-size: 80%; |
| 60 white-space: nowrap; | 60 white-space: nowrap; |
| 61 pointer-events: none; | 61 pointer-events: none; |
| 62 } | 62 } |
| 63 | 63 |
| 64 .timeline-grid-header { | 64 .timeline-grid-header { |
| 65 height: 20px; | 65 height: 20px; |
| 66 pointer-events: none; | 66 pointer-events: none; |
| 67 } | 67 } |
| 68 | |
| 69 .timeline-curtain-left, .timeline-curtain-right { | |
| 70 background-color: hsla(0, 0%, 80%, 0.5); | |
| 71 position: absolute; | |
| 72 top: 0; | |
| 73 height: 100%; | |
| 74 z-index: 300; | |
| 75 pointer-events: none; | |
| 76 border: 1px none hsla(0, 0%, 70%, 0.5); | |
| 77 } | |
| 78 | |
| 79 .timeline-curtain-left { | |
| 80 left: 0; | |
| 81 border-right-style: solid; | |
| 82 } | |
| 83 | |
| 84 .timeline-curtain-right { | |
| 85 right: 0; | |
| 86 border-left-style: solid; | |
| 87 } | |
| OLD | NEW |