bklLiudl
2025-04-07 4e8f58cb41c7b6d570fd1979d80f74ab8a4d00c2
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
@cascader-prefix-cls: ~"@{css-prefix}cascader";
@cascader-item-prefix-cls: ~"@{css-prefix}cascader-menu-item";
 
.selectDropDown{
    width: auto;
    padding: 0;
    white-space: nowrap;
    overflow: visible;
}
 
.@{cascader-prefix-cls} {
    //position: relative;
    line-height: normal;
 
    &-rel{
        display: inline-block;
        width: 100%;
        position: relative;
    }
 
    .@{css-prefix}input{
        padding-right: 24px;
        display: block;
        cursor: pointer;
    }
    &-disabled .@{css-prefix}input{
        cursor: @cursor-disabled;
    }
 
    &-label{
        width: 100%;
        height: 100%;
        line-height: 32px;
        padding: 0 7px;
        box-sizing: border-box;
        white-space: nowrap;
        text-overflow: ellipsis;
        overflow: hidden;
        cursor: pointer;
        font-size: @font-size-base;
        position: absolute;
        left: 0;
        top: 0;
    }
    &-size-large &-label{
        line-height: 36px;
        font-size: @font-size-base;
    }
    &-size-small &-label{
        line-height: 26px;
    }
 
    .@{cascader-prefix-cls}-arrow:nth-of-type(1) {
        display: none;
        cursor: pointer;
    }
 
    &:hover {
        .@{cascader-prefix-cls}-arrow:nth-of-type(1) {
            display: inline-block;
        }
    }
    &-show-clear:hover .@{cascader-prefix-cls}-arrow:nth-of-type(2){
        display: none;
    }
 
    &-arrow {
        .inner-arrow();
    }
    &-visible &-arrow:nth-of-type(2) {
        transform: translateY(-50%) rotate(180deg);
    }
 
    .@{select-dropdown-prefix-cls} {
        .selectDropDown();
    }
 
    .select-item(@cascader-prefix-cls, @cascader-item-prefix-cls);
    .ivu-select-item span{
        color: @error-color;
    }
 
    &-dropdown{
        padding: 5px 0;
        .@{select-dropdown-prefix-cls}-list{
            max-height: 190px;
            box-sizing: border-box;
            overflow: auto;
        }
    }
 
    &-not-found-tip{
        padding: 5px 0;
        text-align: center;
        color: @btn-disable-color;
        li:not([class^=ivu-]){
            list-style: none;
            margin-bottom: 0;
        }
    }
    &-not-found .@{select-dropdown-prefix-cls} {
        width: inherit;
    }
 
    &-menu{
        display: inline-block;
        min-width: 100px;
        height: 180px;
        margin: 0;
        padding: 5px 0 !important;
        vertical-align: top;
        list-style: none;
        border-right: 1px solid @border-color-split;
        overflow: auto;
 
        &:first-child {
 
        }
        &:last-child {
            border-right-color: transparent;
            margin-right: -1px;
        }
        &:only-child {
 
        }
 
        & &-item{
            position: relative;
            padding-right: 36px;
            transition: all @transition-time @ease-in-out;
 
            i{
                font-size: @font-size-small;
                position: absolute;
                right: 15px;
                top: 50%;
                //margin-top: -6px;
                transform: translateY(-50%);
            }
            &-loading{
                margin-top: -6px;
            }
 
            &-active{
                background-color: @background-color-select-hover;
                color: @primary-color;
            }
        }
    }
}
.@{cascader-prefix-cls}-transfer{
    z-index: @zindex-transfer;
    .selectDropDown();
    .select-item(@cascader-prefix-cls, @cascader-item-prefix-cls);
    .ivu-select-item span{
        color: @error-color;
    }
    .@{cascader-prefix-cls} {
        &-menu{
            &-item{
                padding-right: 24px;
                transition: all @transition-time @ease-in-out;
                &-active{
                    background-color: @background-color-select-hover;
                    color: @primary-color;
                }
            }
        }
    }
}
 
.@{form-item-prefix-cls}-error{
    .@{cascader-prefix-cls} {
        &-arrow{
            color: @error-color;
        }
    }
}