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

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

Issue 2807443002: [DevTools] Fix popover regression in M58 (Closed)
Patch Set: Created 3 years, 8 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/Popover.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 :host { 1 .popover-element {
2 position: absolute; 2 position: absolute;
3 z-index: 600; 3 z-index: 600;
4 pointer-events: none; 4 pointer-events: none;
5 display: flex; 5 display: flex;
6 background-color: white; 6 background-color: white;
7 box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.3), 0 2px 2px 0 rgba(0, 0, 0, 0.2), 0 1px 4px 0 rgba(0, 0, 0, 0.37); 7 box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.3), 0 2px 2px 0 rgba(0, 0, 0, 0.2), 0 1px 4px 0 rgba(0, 0, 0, 0.37);
8 border-radius: 2px; 8 border-radius: 2px;
9 }
10
11 .widget {
12 flex: auto; 9 flex: auto;
13 pointer-events: none;
14 overflow: visible; 10 overflow: visible;
15 } 11 }
16 12
17 .popover-content { 13 .popover-content {
18 pointer-events: auto; 14 pointer-events: auto;
19 overflow: auto; 15 overflow: auto;
20 -webkit-user-select: text; 16 -webkit-user-select: text;
21 line-height: 11px; 17 line-height: 11px;
22 flex: auto; 18 flex: auto;
23 padding: 6px; 19 padding: 6px;
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
62 58
63 .arrow.bottom-right-arrow { 59 .arrow.bottom-right-arrow {
64 right: 15px; 60 right: 15px;
65 left: auto; 61 left: auto;
66 top: auto; 62 top: auto;
67 bottom: 0; 63 bottom: 0;
68 margin-top: 0; 64 margin-top: 0;
69 margin-bottom: -19px; 65 margin-bottom: -19px;
70 background-position: 0 -19px; 66 background-position: 0 -19px;
71 } 67 }
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/devtools/front_end/ui/Popover.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698