wix-incubator / angular-tree-control

Angular JS Tree
http://wix.github.io/angular-tree-control
MIT License
708 stars 277 forks source link

Remove overall padding #266

Closed ChaudhryAtif closed 7 years ago

ChaudhryAtif commented 7 years ago

I want to remove the padding on the left:

enter image description here

and have it like so:

enter image description here

But when I try to apply the following :

[treecontrol] li {
    padding: 0;
}

It sets the padding of the children to 0px too:

enter image description here

Is it possible to achieve desired result?

ChaudhryAtif commented 7 years ago
[treecontrol] > ul > li {
    padding: 0;
}

SO question

yoavaa commented 7 years ago

Just do treecontrol treeitem li { padding-left: 20px; } treecontrol li { padding: 0; }