| OLD | NEW |
| (Empty) |
| 1 /* | |
| 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 | |
| 4 * found in the LICENSE file. | |
| 5 */ | |
| 6 | |
| 7 .overview-grid-window-selector { | |
| 8 position: absolute; | |
| 9 top: 0; | |
| 10 bottom: 0; | |
| 11 background-color: rgba(125, 173, 217, 0.5); | |
| 12 z-index: 250; | |
| 13 pointer-events: none; | |
| 14 } | |
| 15 | |
| 16 .overview-grid-window-resizer { | |
| 17 position: absolute; | |
| 18 top: -1px; | |
| 19 height: 20px; | |
| 20 width: 6px; | |
| 21 margin-left: -3px; | |
| 22 background-color: rgb(153, 153, 153); | |
| 23 border: 1px solid white; | |
| 24 z-index: 500; | |
| 25 } | |
| 26 | |
| 27 .overview-grid-cursor-area { | |
| 28 position: absolute; | |
| 29 left: 0; | |
| 30 right: 0; | |
| 31 top: 20px; | |
| 32 bottom: 0; | |
| 33 z-index: 500; | |
| 34 cursor: text; | |
| 35 } | |
| 36 | |
| 37 .overview-grid-cursor-position { | |
| 38 position: absolute; | |
| 39 top: 0; | |
| 40 bottom: 0; | |
| 41 width: 2px; | |
| 42 background-color: hsla(220, 95%, 50%, 0.7); | |
| 43 z-index: 500; | |
| 44 pointer-events: none; | |
| 45 visibility: hidden; | |
| 46 overflow: hidden; | |
| 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 |