Commit 5fff83c9 authored by Nathan Bruer's avatar Nathan Bruer Committed by Commit Bot

[Devtools] Fix minor flexbox filmstrip regression

Fixes a scaling regression when console drawer is shrinking and
timeline overlays filmstrip.

R=alph
BUG=739143

Change-Id: Ice042964ed85d0cfad0ce59b67d982b04594217e
Reviewed-on: https://chromium-review.googlesource.com/562038
Commit-Queue: Blaise Bruer <allada@chromium.org>
Reviewed-by: default avatarAlexei Filippov <alph@chromium.org>
Cr-Commit-Position: refs/heads/master@{#484986}
parent c4d9ba2e
......@@ -52,7 +52,7 @@ Network.NetworkPanel = class extends UI.Panel {
this._filterBar.show(this.element);
this.setDefaultFocusedChild(this._filterBar);
this._filmStripPlaceholderElement = this.element.createChild('div');
this._filmStripPlaceholderElement = this.element.createChild('div', 'network-film-strip-placeholder');
// Create top overview component.
this._overviewPane = new PerfUI.TimelineOverviewPane('network');
......
......@@ -120,6 +120,10 @@
flex: none !important;
}
.network-film-strip-placeholder {
flex-shrink: 0;
}
.network-blocked-urls {
border-top: 1px solid #dadada;
flex: 104px 0 0;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment