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

Unified Diff: third_party/WebKit/Source/devtools/front_end/devices/DevicesView.js

Issue 2912563003: DevTools: cleanup button styles (Closed)
Patch Set: ac Created 3 years, 7 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/devtools/front_end/devices/DevicesView.js
diff --git a/third_party/WebKit/Source/devtools/front_end/devices/DevicesView.js b/third_party/WebKit/Source/devtools/front_end/devices/DevicesView.js
index 082c94213fd6082d1118f2e515af2eecbdbb8f08..91d23713b89d57aec6c440a006f0072e8d716b0a 100644
--- a/third_party/WebKit/Source/devtools/front_end/devices/DevicesView.js
+++ b/third_party/WebKit/Source/devtools/front_end/devices/DevicesView.js
@@ -791,8 +791,7 @@ Devices.DevicesView.DeviceView = class extends UI.VBox {
var titleRow = element.createChild('div', 'device-page-title-row');
var title = titleRow.createChild('div', 'device-page-title');
- var inspect =
- UI.createTextButton(Common.UIString('Inspect'), doAction.bind(null, 'inspect'), 'device-inspect-button');
+ var inspect = UI.createTextButton(Common.UIString('Inspect'), doAction.bind(null, 'inspect'));
titleRow.appendChild(inspect);
var toolbar = new UI.Toolbar('');

Powered by Google App Engine
This is Rietveld 408576698