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

Side by Side Diff: third_party/WebKit/Source/devtools/front_end/ui/glassPane.css

Issue 2702523003: [DevTools] Continue GlassPane refactoring. (Closed)
Patch Set: element Created 3 years, 10 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
(Empty)
1 /*
2 * Copyright 2017 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 :host {
8 position: absolute !important;
9 top: 0;
10 bottom: 0;
11 left: 0;
12 right: 0;
13 overflow: hidden;
14 contain: strict;
15 background-color: transparent;
16 }
17
18 :host-context(.dimmed-pane) {
19 background-color: rgba(255, 255, 255, 0.5);
20 }
21
22 :host-context(.no-pointer-events) {
23 pointer-events: none;
24 }
25
26 .widget {
27 display: flex;
28 background-color: transparent;
29 pointer-events: auto;
30 flex: none;
31 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698