| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2014 The Chromium Authors. All rights reserved. | 2 * Copyright (c) 2014 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 .overview-grid-window-selector { | 7 .overview-grid-window-selector { |
| 8 position: absolute; | 8 position: absolute; |
| 9 top: 0; | 9 top: 0; |
| 10 bottom: 0; | 10 bottom: 0; |
| (...skipping 27 matching lines...) Expand all Loading... |
| 38 position: absolute; | 38 position: absolute; |
| 39 top: 0; | 39 top: 0; |
| 40 bottom: 0; | 40 bottom: 0; |
| 41 width: 2px; | 41 width: 2px; |
| 42 background-color: hsla(220, 95%, 50%, 0.7); | 42 background-color: hsla(220, 95%, 50%, 0.7); |
| 43 z-index: 500; | 43 z-index: 500; |
| 44 pointer-events: none; | 44 pointer-events: none; |
| 45 visibility: hidden; | 45 visibility: hidden; |
| 46 overflow: hidden; | 46 overflow: hidden; |
| 47 } | 47 } |
| 48 |
| 49 .window-curtain-left, .window-curtain-right { |
| 50 background-color: hsla(0, 0%, 80%, 0.5); |
| 51 position: absolute; |
| 52 top: 0; |
| 53 height: 100%; |
| 54 z-index: 300; |
| 55 pointer-events: none; |
| 56 border: 1px none hsla(0, 0%, 70%, 0.5); |
| 57 } |
| 58 |
| 59 .window-curtain-left { |
| 60 left: 0; |
| 61 border-right-style: solid; |
| 62 } |
| 63 |
| 64 .window-curtain-right { |
| 65 right: 0; |
| 66 border-left-style: solid; |
| 67 } |
| OLD | NEW |