_stepper.css 679 Bytes
.stepper {
    display: inline-block;

    div {
        float: left;
    }

    .action {
        width: 20px;
        height: 28px;
        text-align: center;
        border: 1px solid #eee;
        color: #999;

        &:hover {
            background-color: #666;
            cursor: pointer;
            color: #fff;
        }

        .iconfont {
            font-size: 14px;
            line-height: 28px;
            height: 14px;
            display: inline-block;

        }

    }

    .disable {
        background: #999;
        color: #fff;
    }

    .input {
        margin: 0 5px;
        width: 38px;
        height: 28px;
        text-align: center;
    }
}