[pve-devel] [PATCH 4/5] ext5migrate: bump date-time fields to 150px width
Emmanuel Kasper
e.kasper at proxmox.com
Mon Jun 15 15:31:12 CEST 2015
ExtJS5 Neptune default theme use 13px font instead of 12px in
ExtJS4 so we need to make room for it.
---
www/manager5/dc/Log.js | 4 ++--
www/manager5/dc/Tasks.js | 4 ++--
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/www/manager5/dc/Log.js b/www/manager5/dc/Log.js
index 4bd76b7..75eccb0 100644
--- a/www/manager5/dc/Log.js
+++ b/www/manager5/dc/Log.js
@@ -45,7 +45,7 @@ Ext.define('PVE.dc.Log', {
{
header: gettext("Time"),
dataIndex: 'time',
- width: 100,
+ width: 150,
renderer: function(value) {
return Ext.Date.format(value, "M d H:i:s");
}
@@ -53,7 +53,7 @@ Ext.define('PVE.dc.Log', {
{
header: gettext("Node"),
dataIndex: 'node',
- width: 100
+ width: 150
},
{
header: gettext("Service"),
diff --git a/www/manager5/dc/Tasks.js b/www/manager5/dc/Tasks.js
index 4e8176c..12bb902 100644
--- a/www/manager5/dc/Tasks.js
+++ b/www/manager5/dc/Tasks.js
@@ -70,7 +70,7 @@ Ext.define('PVE.dc.Tasks', {
{
header: gettext("Start Time"),
dataIndex: 'starttime',
- width: 100,
+ width: 150,
renderer: function(value) {
return Ext.Date.format(value, "M d H:i:s");
}
@@ -78,7 +78,7 @@ Ext.define('PVE.dc.Tasks', {
{
header: gettext("End Time"),
dataIndex: 'endtime',
- width: 100,
+ width: 150,
renderer: function(value, metaData, record) {
if (record.data.pid) {
if (record.data.type == "vncproxy" ||
--
2.1.4
More information about the pve-devel
mailing list