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

Unified Diff: Source/devtools/front_end/emulation/DevicesSettingsTab.js

Issue 1310873005: [DevTools] Make width/height inputs for custom device smaller... (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 3 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/devtools/front_end/emulation/DevicesSettingsTab.js
diff --git a/Source/devtools/front_end/emulation/DevicesSettingsTab.js b/Source/devtools/front_end/emulation/DevicesSettingsTab.js
index 8c894e034efe41d281e227c8a158ceab23c6278c..5ccba223dbd45b1feea649d8351d6b4d484df773 100644
--- a/Source/devtools/front_end/emulation/DevicesSettingsTab.js
+++ b/Source/devtools/front_end/emulation/DevicesSettingsTab.js
@@ -158,9 +158,9 @@ WebInspector.DevicesSettingsTab.prototype = {
fields.appendChild(this._editDeviceTitle);
var screen = fields.createChild("div", "hbox");
- this._editDeviceWidth = this._createInput(WebInspector.UIString("Width"), "120px");
+ this._editDeviceWidth = this._createInput(WebInspector.UIString("Width"), "80px");
screen.appendChild(this._editDeviceWidth);
- this._editDeviceHeight = this._createInput(WebInspector.UIString("Height"), "120px");
+ this._editDeviceHeight = this._createInput(WebInspector.UIString("Height"), "80px");
screen.appendChild(this._editDeviceHeight);
this._editDeviceScale = this._createInput(WebInspector.UIString("Device pixel ratio"));
screen.appendChild(this._editDeviceScale);
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698