input.scss 649 Bytes
Newer Older
zhanghaozhe committed
1 2 3 4
.custom-input-wrapper {
    position: relative;

    .custom-input {
xuzhenghua committed
5 6
        width: 277px;
        height: 33px;
zhanghaozhe committed
7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22

        padding-left: 10px;

        border: 1px solid $border_ddd;
        border-radius: 3px;

        font-size: $font_12;

        -webkit-appearance: none;


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

FE committed
23 24 25 26
    .custom-input--active {
        border-color: #09f;
    }

zhanghaozhe committed
27 28 29 30 31 32 33 34 35 36 37 38 39
    .iconfont {
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
        font-size: $font_14;
        color: $bg_ccc;
    }

    .hide {
        display: none;
    }
}