| Index: third_party/WebKit/Source/devtools/front_end/elements/ElementsPanel.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/elements/ElementsPanel.js b/third_party/WebKit/Source/devtools/front_end/elements/ElementsPanel.js
|
| index 4b345275a7efb5fcca8d163f6fa8ce6ef7f9af42..4bed8ac88f7566039de81e17aba4aa6862c4bbeb 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/elements/ElementsPanel.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/elements/ElementsPanel.js
|
| @@ -803,11 +803,11 @@ Elements.ElementsPanel = class extends UI.Panel {
|
| splitWidget.setSidebarWidget(computedStylePanesWrapper);
|
| } else {
|
| // Styles and computed are in separate tabs.
|
| - stylesView.element.classList.add('flex-auto', 'metrics-and-styles');
|
| + stylesView.element.classList.add('flex-auto');
|
| matchedStylePanesWrapper.show(stylesView.element);
|
|
|
| var computedView = new UI.SimpleView(Common.UIString('Computed'));
|
| - computedView.element.classList.add('composite', 'fill', 'metrics-and-computed');
|
| + computedView.element.classList.add('composite', 'fill');
|
| computedStylePanesWrapper.show(computedView.element);
|
|
|
| tabbedPane.addEventListener(UI.TabbedPane.Events.TabSelected, tabSelected, this);
|
|
|