editor: canvas - stop using thrown away nodeMoved event, use 'move' flag instead
[fnpeditor.git] / src / editor / modules / nodeFamilyTree / nodeFamilyTree.less
1 .rng-module-nodeFamilyTree {
2     overflow-y: scroll;
3     max-height: 150px;
4     width:100%;
5     margin-top:10px;
6
7     table {
8         width: 90%;
9         margin: 0;
10     
11         tr {
12             td:nth-child(1) {
13                 width: 30%;
14             }
15             td:nth-child(2) {
16                 width: 70%;
17             }
18             td ul {
19                 list-style-type: none;
20                 margin: 0;
21             }
22             
23         }
24     }
25     
26     &::-webkit-scrollbar {
27         .rng-mixin-scrollbar;
28     }
29     &::-webkit-scrollbar-track {
30         .rng-mixin-scrollbar-track;
31     }
32     &::-webkit-scrollbar-thumb {
33         .rng-mixin-scrollbar-thumb;
34     }
35     &::-webkit-scrollbar-thumb:window-inactive {
36         .rng-mixin-scrollbar-thumb-window-inactive;
37     }
38 }