| Index: third_party/WebKit/Source/devtools/front_end/elements/ElementStatePaneWidget.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/elements/ElementStatePaneWidget.js b/third_party/WebKit/Source/devtools/front_end/elements/ElementStatePaneWidget.js
|
| index a291808da821b6eef27ef1af3acc0bc9b0f87573..a7eb28272f54ed1d4d0273f70e719b0a8513fff2 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/elements/ElementStatePaneWidget.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/elements/ElementStatePaneWidget.js
|
| @@ -124,8 +124,9 @@ WebInspector.ElementStatePaneWidget.prototype = {
|
| */
|
| WebInspector.ElementStatePaneWidget.ButtonProvider = function()
|
| {
|
| - this._button = new WebInspector.ToolbarToggle(WebInspector.UIString("Toggle Element State"), "pin-toolbar-item");
|
| + this._button = new WebInspector.ToolbarToggle(WebInspector.UIString("Toggle Element State"), "", WebInspector.UIString(":hov"));
|
| this._button.addEventListener("click", this._clicked, this);
|
| + this._button.element.classList.add("monospace");
|
| this._view = new WebInspector.ElementStatePaneWidget(this.item());
|
| WebInspector.context.addFlavorChangeListener(WebInspector.DOMNode, this._nodeChanged, this);
|
| this._nodeChanged();
|
|
|