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

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

Issue 2703143002: [DevTools] Prepare to move Popover to shadow DOM. (Closed)
Patch Set: fix 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
« no previous file with comments | « third_party/WebKit/Source/devtools/front_end/timeline/timelinePanel.css ('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 .popover-container { 1 .popover-container {
2 pointer-events: none; 2 pointer-events: none;
3 overflow: hidden; 3 overflow: hidden;
4 } 4 }
5 5
6 .popover { 6 .popover {
7 position: absolute; 7 position: absolute;
8 z-index: 600; 8 z-index: 600;
9 pointer-events: none; 9 pointer-events: none;
10 display: flex; 10 display: flex;
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
60 60
61 .popover.bottom-right-arrow .arrow { 61 .popover.bottom-right-arrow .arrow {
62 right: 15px; 62 right: 15px;
63 left: auto; 63 left: auto;
64 top: auto; 64 top: auto;
65 bottom: 0; 65 bottom: 0;
66 margin-top: 0; 66 margin-top: 0;
67 margin-bottom: -19px; 67 margin-bottom: -19px;
68 background-position: 0 -19px; 68 background-position: 0 -19px;
69 } 69 }
70
71 .source-frame-popover-title {
72 text-overflow: ellipsis;
73 overflow: hidden;
74 white-space: nowrap;
75 font-weight: bold;
76 padding-left: 18px;
77 }
78
79 .source-frame-popover-tree {
80 border-top: 1px solid rgb(184, 184, 184);
81 overflow: auto;
82 position: absolute;
83 top: 21px;
84 bottom: 5px;
85 left: 5px;
86 right: 5px;
87 margin-top: 1px;
88 }
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/devtools/front_end/timeline/timelinePanel.css ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698