| 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-current-position { | 64 .overview-grid-cursor-area { |
| 65 position: absolute; |
| 66 left: 0; |
| 67 right: 0; |
| 68 top: 20px; |
| 69 bottom: 0; |
| 70 z-index: 500; |
| 71 cursor: text; |
| 72 } |
| 73 |
| 74 .overview-grid-cursor-position { |
| 65 position: absolute; | 75 position: absolute; |
| 66 top: 0; | 76 top: 0; |
| 67 bottom: 0; | 77 bottom: 0; |
| 68 width: 2px; | 78 width: 2px; |
| 69 background-color: hsla(220, 95%, 50%, 0.7); | 79 background-color: hsla(220, 95%, 50%, 0.7); |
| 70 z-index: 500; | 80 z-index: 500; |
| 71 pointer-events: none; | 81 pointer-events: none; |
| 72 visibility: hidden; | 82 visibility: hidden; |
| 73 } | 83 } |
| OLD | NEW |