Index: branches/unlabeled/unlabeled-1.3.2/core/admin_templates/js/tree.js =================================================================== diff -u -N -r7648 -r7755 --- branches/unlabeled/unlabeled-1.3.2/core/admin_templates/js/tree.js (.../tree.js) (revision 7648) +++ branches/unlabeled/unlabeled-1.3.2/core/admin_templates/js/tree.js (.../tree.js) (revision 7755) @@ -48,6 +48,8 @@ for (var i=0; i < this.Level; i++) { img = document.createElement('img'); + img.style.width = '16px'; + img.style.height = '22px'; img.src = TREE_ICONS_PATH+'/ftv2blank.gif'; img.style.verticalAlign = 'middle'; td.appendChild(img); @@ -62,6 +64,8 @@ TreeItem.prototype.appendNodeImage = function(td) { img = document.createElement('img'); + img.style.width = '16px'; + img.style.height = '22px'; img.src = this.getNodeImage(); img.style.verticalAlign = 'middle'; td.appendChild(img); @@ -70,6 +74,8 @@ TreeItem.prototype.appendIcon = function (td) { img = document.createElement('img'); + img.style.width = '24px'; + img.style.height = '22px'; if (this.Icon.indexOf('http://') != -1) { img.src = this.Icon; } @@ -408,6 +414,8 @@ TreeFolder.prototype.appendNodeImage = function(td, is_last) { img = document.createElement('img'); + img.style.width = '16px'; + img.style.height = '22px'; img.src = this.getNodeImage(is_last); img.style.cursor = 'hand'; img.style.cursor = 'pointer';