// editor-num-picker
.editor-num-picker{
    line-height: 26px;
    text-align: right;

    label{
        float: left;
    }

    input{
        display: inline-block;
        background: #FFF;
        border: 1px solid #DDD;
        border-radius: 2px;
        font-size: inherit;
        padding: 2px 3px;
        height: 26px;
        width: 3em;
        outline: 0;
        vertical-align: top;
        text-align: center;

        -webkit-appearance: textfield;

        &:focus{
            border-color: #AAA;
        }
    }
    button{
        background: none;
        border: 0;
        height: 26px;
        outline: 0;
        vertical-align: top;
    }

    input::-webkit-outer-spin-button,
    input::-webkit-inner-spin-button{
        -webkit-appearance: none;
        display: none;
    }
}
