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

Unified Diff: Source/devtools/front_end/toolbox/OverridesUI.js

Issue 421543003: [DevTools] Fix emulation drawer button styles. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 5 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
« no previous file with comments | « Source/devtools/front_end/overrides.css ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/devtools/front_end/toolbox/OverridesUI.js
diff --git a/Source/devtools/front_end/toolbox/OverridesUI.js b/Source/devtools/front_end/toolbox/OverridesUI.js
index 1c6ba5c909aaa0ec4b26cbc30d468c9803268391..043369bcb2e44f385d2d087952fe1b54f943762e 100644
--- a/Source/devtools/front_end/toolbox/OverridesUI.js
+++ b/Source/devtools/front_end/toolbox/OverridesUI.js
@@ -16,11 +16,11 @@ WebInspector.OverridesUI.createDeviceSelect = function(document, titleProvider)
var deviceSelectElement = p.createChild("select");
deviceSelectElement.addEventListener("change", deviceSelected, false);
- var saveButton = p.createChild("button", "save-device-button");
+ var saveButton = p.createChild("button");
saveButton.textContent = WebInspector.UIString("Save as");
saveButton.addEventListener("click", saveClicked, false);
- var removeButton = p.createChild("button", "remove-device-button");
+ var removeButton = p.createChild("button");
removeButton.textContent = WebInspector.UIString("Remove");
removeButton.addEventListener("click", removeClicked, false);
« no previous file with comments | « Source/devtools/front_end/overrides.css ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698