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 { | |
17 background-color: white; | |
18 position: absolute; | |
19 left: 0; | |
20 right: 0; | |
21 top: 0; | |
22 height: 20px; | |
23 z-index: 150; | |
24 } | |
25 | |
26 .overview-grid-dividers-background { | |
27 left: 0%; | |
28 right: 0%; | |
29 top: 0; | |
30 height: 20px; | |
31 background-color: black; | |
32 position: absolute; | |
33 } | |
34 | |
35 .overview-grid-window-rulers { | |
36 top: 0; | |
37 bottom: 0; | |
38 position: absolute; | |
39 opacity: 0.2; | |
40 border-right: 1px solid black; | |
41 border-left: 1px solid black; | |
42 z-index: 250; | |
43 pointer-events: none; | |
44 } | |
45 | |
46 .overview-grid-window-resizer { | |
47 position: absolute; | |
48 top: 0; | |
49 height: 20px; | |
50 width: 5px; | |
51 margin-left: -2px; | |
52 margin-right: -3px; | |
53 background-color: rgb(153, 153, 153); | |
54 z-index: 500; | |
55 border-radius: 2px; | |
56 box-shadow: white 1px 0 0, white -1px 0 0, white 0 1px 0, white 0 -1px 0; | |
57 } | |
58 | |
59 .overview-grid-window-resizer-right { | |
60 margin-left: -3px; | |
61 margin-right: -2px; | |
62 } | |
OLD | NEW |