clearable-input.scss 589 Bytes
Newer Older
zhanghaozhe committed
1 2 3 4 5 6
.clearable-input-wrapper {
    position: relative;

    input {
        width: 300px;
        height: 46px;
7
        padding: 15px 0 15px 34px;
zhanghaozhe committed
8 9 10
        border: 1px solid $border_ccc;
        border-radius: 3px;
        -webkit-appearance: none;
zhanghaozhe committed
11
        font-size: 15px;
zhanghaozhe committed
12 13 14 15 16 17 18 19 20 21 22 23

        &::-webkit-input-placeholder {
            color: $color_999;
            font-size: $font_16;
        }
    }

    .iconfont {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        font-size: 21px;
24 25 26 27 28
        color: $color_bbb;
    }

    .clear {
        right: 13px;
zhanghaozhe committed
29 30
    }
}