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

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

Issue 2768193002: [DevTools] Adjust popover arrow position. (Closed)
Patch Set: rebased 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
« no previous file with comments | « third_party/WebKit/Source/devtools/front_end/ui/GlassPane.js ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 14 matching lines...) Expand all
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 32
33 .arrow-top { 33 .arrow-top {
34 margin-top: -19px; 34 margin-top: -19px;
35 margin-left: -10px; 35 margin-left: -9px;
36 } 36 }
37 37
38 .arrow-bottom { 38 .arrow-bottom {
39 margin-left: -10px; 39 margin-left: -9px;
40 } 40 }
41 41
42 .arrow-left { 42 .arrow-left {
43 margin-left: -19px; 43 margin-left: -19px;
44 margin-top: -10px; 44 margin-top: -9px;
45 } 45 }
46 46
47 .arrow-right { 47 .arrow-right {
48 margin-top: -10px; 48 margin-top: -9px;
49 } 49 }
50 50
51 .arrow-none { 51 .arrow-none {
52 display: none; 52 display: none;
53 } 53 }
54 54
55 :host-context(.-theme-with-dark-background) .arrow { 55 :host-context(.-theme-with-dark-background) .arrow {
56 -webkit-filter: invert(80%); 56 -webkit-filter: invert(80%);
57 } 57 }
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/devtools/front_end/ui/GlassPane.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698