Skip to content

Commit 3a87aec

Browse files
a1phCommit bot
authored andcommitted
DevTools: Fix timeline flamechart popover style.
NOTRY=true Review-Url: https://codereview.chromium.org/2506903004 Cr-Commit-Position: refs/heads/master@{#433059}
1 parent 0837411 commit 3a87aec

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

third_party/WebKit/Source/devtools/front_end/timeline/timelineFlamechartPopover.css

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@
44
* found in the LICENSE file.
55
*/
66

7+
.timeline-flamechart-popover {
8+
overflow: hidden;
9+
}
10+
711
.timeline-flamechart-popover span {
812
margin-right: 5px;
913
}

third_party/WebKit/Source/devtools/front_end/ui_lazy/flameChart.css

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,11 +80,13 @@
8080
}
8181

8282
.flame-chart-entry-info:not(:empty) {
83-
z-index: 200;
83+
z-index: 2000;
8484
position: absolute;
8585
background-color: white;
8686
pointer-events: none;
87-
padding: 2px;
87+
padding: 4px 8px;
88+
white-space: nowrap;
89+
max-width: 80%;
8890
box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05),
8991
0 2px 4px rgba(0, 0, 0, 0.2),
9092
0 2px 6px rgba(0, 0, 0, 0.1);

0 commit comments

Comments
 (0)