Open kakid opened 8 years ago
Hi,
When we zoom-out in a page containing the tree view (tested on chrome 54, zoom 90%) the tree view is not displayed correctly
the problem is somewhere here, (when the label is displayed as block and tree-leaf-head float left)
treecontrol.tree-boot li > .tree-label { display: block; padding: 3px 0; border-radius: 4px; } treecontrol.tree-boot i.tree-branch-head, treecontrol.tree-boot i.tree-leaf-head { float: left; height: 16px; margin: 5px 0px; }
treecontrol.tree-boot li > .tree-label { display: block; padding: 3px 0; border-radius: 4px; }
treecontrol.tree-boot i.tree-branch-head, treecontrol.tree-boot i.tree-leaf-head { float: left; height: 16px; margin: 5px 0px; }
Thank you
I got it working for the attribute element by changing the margin from:
margin: 5px;
to
margin-top: 5px;
the solution from rmhubley helps. Thanks.
Hi,
When we zoom-out in a page containing the tree view (tested on chrome 54, zoom 90%) the tree view is not displayed correctly
the problem is somewhere here, (when the label is displayed as block and tree-leaf-head float left)
Thank you