| 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 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 54 z-index: 500; | 54 z-index: 500; |
| 55 border-radius: 2px; | 55 border-radius: 2px; |
| 56 box-shadow: white 1px 0 0, white -1px 0 0, white 0 1px 0, white 0 -1px 0; | 56 box-shadow: white 1px 0 0, white -1px 0 0, white 0 1px 0, white 0 -1px 0; |
| 57 } | 57 } |
| 58 | 58 |
| 59 .overview-grid-window-resizer-right { | 59 .overview-grid-window-resizer-right { |
| 60 margin-left: -3px; | 60 margin-left: -3px; |
| 61 margin-right: -2px; | 61 margin-right: -2px; |
| 62 } | 62 } |
| 63 | 63 |
| 64 .overview-grid-window-area { | |
| 65 position: absolute; | |
| 66 top: 20px; | |
| 67 bottom: 0; | |
| 68 left: 0; | |
| 69 right: 0; | |
| 70 z-index: 250; | |
| 71 } | |
| 72 | |
| 73 .overview-grid-current-position { | 64 .overview-grid-current-position { |
| 74 position: absolute; | 65 position: absolute; |
| 75 top: 0; | 66 top: 0; |
| 76 bottom: 0; | 67 bottom: 0; |
| 77 width: 2px; | 68 width: 2px; |
| 78 background-color: hsla(220, 95%, 50%, 0.7); | 69 background-color: hsla(220, 95%, 50%, 0.7); |
| 79 z-index: 500; | 70 z-index: 500; |
| 80 pointer-events: none; | 71 pointer-events: none; |
| 81 visibility: hidden; | 72 visibility: hidden; |
| 82 } | 73 } |
| OLD | NEW |