保誠-保戶業務員媒合平台
Tomas
2023-08-05 f3e662798b3b83a83c2d60dc7b4e6cf1ee4f1331
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
.el-tree {
    position: static;
    background: transparent;
    .el-tree-node {
        white-space: pre-wrap;
        word-break: break-all;
 
        .el-tree-node__content {
            border: solid 2px #CCCCCC;
            padding: 10px 10px 10px 20px;
            border-radius: 10px;
            color: #68737A;
            justify-content: space-between;
            flex-direction: row-reverse;
            margin-bottom: 10px;
            height: auto;
 
            .el-tree-node__expand-icon {
                @extend .pam-icon;
                @extend .icon--primary;
 
                &.expanded::before {
                    content: "\e900";
                    display: inline-block;
                    transform: rotate(90deg);
                }
            }
 
            .el-tree-node__label {
                @extend .mdTxt;
                width: 85%;
                display: block;
                padding-left: 20px;
                line-height: 27px;
                word-wrap: break-word;
                height: auto;
            }
        }
 
        &.is-expanded > .el-tree-node__content {
            background-color: #F68C96;
            border: solid 2px #F68C96;
 
            .el-tree-node__label,.el-tree-node__expand-icon {
                color: $PRIMARY_WHITE;
            }
        }
 
        .el-tree-node__children {
            margin-bottom: 10px;
            .el-tree-node {
                .el-tree-node__content  {
                    flex-direction: row;
                    border: 0px;
                    padding: 0 !important;
                    margin-bottom: 0;
 
                    .el-tree-node__expand-icon {
                        display: none;
                    }
 
                    .el-tree-node__label {
                        @extend .p;
                        line-height: 27px;
                        width: 100%;
                        font-weight: lighter;
                        padding-right: 10px;
                        // line-break: loose;
                        // display: flex;
                        // justify-content: space-between;
                        // text-align: justify;
                        // text-align-last: left;
                        // text-justify:inter-ideograph;
                        // word-break: break-all;
 
                        // &:after{
                        //     display:inline-block;
                        //     content:'';
                        //     overflow:hidden;
                        //     width:100%;
                        //     height: 0;
 
                        // }
                    }
                }
            }
        }
 
    }
}