feat(app\components): create tree view component

This commit is contained in:
tibing 2016-07-04 17:07:51 +03:00
parent e7d21b2239
commit 070cec726e
11 changed files with 117 additions and 0 deletions

View file

@ -0,0 +1,27 @@
#tree-view .tree {
& .node-value {
color: white;
}
& .folding {
&.node-expanded::before {
color: white;
}
&.node-collapsed::before {
color: white;
}
&.node-leaf::before {
color: white;
}
}
& .over-drop-target {
border: 4px solid ghostwhite;
}
& .node-value{
& .node-selected::after {
background-color: white;
}
&:after {
background-color: white;
}
}
}

View file

@ -8,3 +8,4 @@
@import "sass/socicon";
@import "sass/table";
@import "sass/form";
@import "sass/treeView";