aboutsummaryrefslogtreecommitdiffstats
path: root/catalog-ui/src/app/directives/structure-tree/structure-tree-directive.less
blob: 094c3f70baeb274d0183292b0648fff73707122c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
.structure-tree{
    padding: 9px 0px 10px 30px;
    position: relative;
    ul{
        position: relative;
        list-style: none;
        padding-left:25px;
        ::before{
            content: "";
            position: absolute;
            left: -27px;
        }
        ::after{
            content: "";
            position: absolute;
            left: -27px;
        }
        li{
            position: relative;
            &::before{
                border-top: 1px solid #666666;
                top: 20px;
                width: 10px;
                height: 0;
            }
            &::after{
                border-left: 1px solid #666666;
                height: 100%;
                width: 0px;
                top: -2px;
            }
            &:last-child::after{
                height: 23px
            }
        }
    }
    .component-container{
        display: inline-block;
        margin: 6px 0px 0px -16px;
    }
    .component-container-icon{
        display: inline-block;
    }
    .component-container-text{
        padding-left: 8px;
        float: right;

        text-overflow: ellipsis;
        max-width:120px;
        display: inline-block;
        white-space: nowrap;
        font-size: 13px;
        color: #666666;;
        overflow: hidden;
        line-height: 28px;
        float: none;
    }

    .non-certified{
        position: relative;
        left: 18px;
        bottom: 8px;
        .sprite;
        .s-sdc-state-non-certified;
        display:block;
    }

}