mor-private-tree{
    display: block;

    mor-private-tree{
        padding-left: 1.5em;
        margin-top: 0.25em;
    }

    ul.tree-body{
        margin: 0;
        padding: 0;
        list-style: none;
        font-size: @fontSize*0.875;

        .tree-node{
            padding: 0.25em 0;
            margin: 0;
            box-sizing: border-box;
            position: relative;
            vertical-align: top;

            > span{
                display: inline-block;
                font-size: 0;
                background: @colorWhite;
                position: relative;
                z-index: 1;
                vertical-align: top;

                > a{
                    color: @colorBlack;
                    font-size: @fontSize*0.875;
                    display: inline-block;
                    box-sizing: border-box;
                    cursor: default;

                    &:hover{
                        text-decoration: none;
                    }
                }

                .node-switcher{
                    // transform-origin: center;
                    // transform: scale(0.8);

                    &:hover{
                        cursor: pointer;
                    }

                    .mo-icon{
                        font-size: @fontSize;
                        width: @fontSize;
                        height: @fontSize*1.25;
                        line-height: @fontSize*1.25;
                        display: inline-block;
                        vertical-align: top;
                        text-align: center;
                    }

                    .mo-icon-down,
                    .mo-icon-right{
                        font-size: @fontSize*0.75;
                    }
                }

                .node-name{
                    padding: 2px 7px;
                    border-radius: @borderRadius;

                    &.current{
                        background: lighten(@colorLightTheme, 20%);
                    }
                }

                .leafnode-icon{
                    display: inline-block;
                    vertical-align: top;
                    width: @fontSize;
                    height: @fontSize*1.25;
                    line-height: @fontSize*1.25;

                    .mo-icon{
                        font-size: @fontSize;
                        display: inline-block;
                        vertical-align: top;
                        text-align: center;
                    }
                }
            }

            &.is-fold{
                padding: 0.25em 0;
            }

            &.hide{
                display: none;
            }

            &.disabled{
                > span{
                    .node-switcher{
                        &:hover{
                            cursor: not-allowed;
                        }
                    }

                    .node-name{
                        background: @colorFormBackgroundDisable;
                        cursor: not-allowed !important;

                        &:hover{
                            background: @colorFormBackgroundDisable !important;
                        }
                    }
                }
            }
        }
    }

    // default status
    &{}
}
