Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(353)

Side by Side Diff: third_party/WebKit/Source/devtools/front_end/ui_lazy/overviewGrid.css

Issue 2404143002: DevTools: move overview grid window curtains handling into said window (Closed)
Patch Set: Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698