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

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

Issue 2712063002: [DevTools] Migrate Popover to GlassPane (Closed)
Patch Set: nit Created 3 years, 9 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 2017 The Chromium Authors. All rights reserved. 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 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 :host { 7 :host {
8 position: absolute !important; 8 position: absolute !important;
9 top: 0; 9 top: 0;
10 bottom: 0; 10 bottom: 0;
(...skipping 11 matching lines...) Expand all
22 :host-context(.no-pointer-events) { 22 :host-context(.no-pointer-events) {
23 pointer-events: none; 23 pointer-events: none;
24 } 24 }
25 25
26 .widget { 26 .widget {
27 display: flex; 27 display: flex;
28 background-color: transparent; 28 background-color: transparent;
29 pointer-events: auto; 29 pointer-events: auto;
30 flex: none; 30 flex: none;
31 } 31 }
32
33 .arrow-top {
34 margin-top: -19px;
35 margin-left: -10px;
36 }
37
38 .arrow-bottom {
39 margin-left: -10px;
40 }
41
42 .arrow-left {
43 margin-left: -19px;
44 margin-top: -10px;
45 }
46
47 .arrow-right {
48 margin-top: -10px;
49 }
50
51 .arrow-none {
52 display: none;
53 }
54
55 :host-context(.-theme-with-dark-background) .arrow {
56 -webkit-filter: invert(80%);
57 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698