Commit 4ecaceab authored by Emmanuel Kasper's avatar Emmanuel Kasper Committed by Dietmar Maurer

ext5migrate: bump date-time fields to 150px width

ExtJS5 Neptune default theme use 13px font instead of 12px in
ExtJS4 so we need to make room for it.
parent b7b168b7
...@@ -45,7 +45,7 @@ Ext.define('PVE.dc.Log', { ...@@ -45,7 +45,7 @@ Ext.define('PVE.dc.Log', {
{ {
header: gettext("Time"), header: gettext("Time"),
dataIndex: 'time', dataIndex: 'time',
width: 100, width: 150,
renderer: function(value) { renderer: function(value) {
return Ext.Date.format(value, "M d H:i:s"); return Ext.Date.format(value, "M d H:i:s");
} }
...@@ -53,7 +53,7 @@ Ext.define('PVE.dc.Log', { ...@@ -53,7 +53,7 @@ Ext.define('PVE.dc.Log', {
{ {
header: gettext("Node"), header: gettext("Node"),
dataIndex: 'node', dataIndex: 'node',
width: 100 width: 150
}, },
{ {
header: gettext("Service"), header: gettext("Service"),
......
...@@ -70,7 +70,7 @@ Ext.define('PVE.dc.Tasks', { ...@@ -70,7 +70,7 @@ Ext.define('PVE.dc.Tasks', {
{ {
header: gettext("Start Time"), header: gettext("Start Time"),
dataIndex: 'starttime', dataIndex: 'starttime',
width: 100, width: 150,
renderer: function(value) { renderer: function(value) {
return Ext.Date.format(value, "M d H:i:s"); return Ext.Date.format(value, "M d H:i:s");
} }
...@@ -78,7 +78,7 @@ Ext.define('PVE.dc.Tasks', { ...@@ -78,7 +78,7 @@ Ext.define('PVE.dc.Tasks', {
{ {
header: gettext("End Time"), header: gettext("End Time"),
dataIndex: 'endtime', dataIndex: 'endtime',
width: 100, width: 150,
renderer: function(value, metaData, record) { renderer: function(value, metaData, record) {
if (record.data.pid) { if (record.data.pid) {
if (record.data.type == "vncproxy" || if (record.data.type == "vncproxy" ||
......
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