wangzhibo
4 天以前 10595d8632f959d0954d1939243196f4eed02372
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
.cl-select-inner {
    display: flex;
    align-items: center;
    height: $cl-height;
    width: 100%;
    background-color: #fff;
    box-sizing: border-box;
    position: relative;
    font-size: $cl-font-size;
 
    &__wrap {
        width: 100%;
    }
 
    &__value {
        flex: 1;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        line-height: 1;
    }
 
    &__icon {
        color: $cl-color-placeholder;
        font-size: 28rpx !important;
 
        &:last-child {
            margin-left: 20rpx;
        }
    }
 
    &__placeholder {
        color: $cl-color-placeholder;
    }
 
    &.is-disabled {
        background-color: $cl-color-disabled-bg;
        color: $cl-color-disabled;
 
        .cl-select__placeholder {
            color: $cl-color-disabled;
        }
    }
 
    &.is-border {
        border: $cl-border-width solid $cl-border-color;
        border-radius: $cl-border-radius;
    }
 
    &.is-round {
        border-radius: $cl-height;
    }
}