Commit 2ba4e157 authored by dgozman@chromium.org's avatar dgozman@chromium.org

[DevTools] Make width/height inputs for custom device smaller...

... so that Device Pixel Ratio does fit.

BUG=529744
TBR=caseq

Review URL: https://codereview.chromium.org/1310873005

git-svn-id: svn://svn.chromium.org/blink/trunk@202003 bbb929c8-8fbe-4397-9dbb-9b2b20218538
parent b5c71127
...@@ -158,9 +158,9 @@ WebInspector.DevicesSettingsTab.prototype = { ...@@ -158,9 +158,9 @@ WebInspector.DevicesSettingsTab.prototype = {
fields.appendChild(this._editDeviceTitle); fields.appendChild(this._editDeviceTitle);
var screen = fields.createChild("div", "hbox"); 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); screen.appendChild(this._editDeviceWidth);
this._editDeviceHeight = this._createInput(WebInspector.UIString("Height"), "120px"); this._editDeviceHeight = this._createInput(WebInspector.UIString("Height"), "80px");
screen.appendChild(this._editDeviceHeight); screen.appendChild(this._editDeviceHeight);
this._editDeviceScale = this._createInput(WebInspector.UIString("Device pixel ratio")); this._editDeviceScale = this._createInput(WebInspector.UIString("Device pixel ratio"));
screen.appendChild(this._editDeviceScale); screen.appendChild(this._editDeviceScale);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment