// editor-range-picker
.editor-range-picker{
    border-right: 12px solid transparent;
    height: 16px;
    position: relative;
    cursor: pointer;

    &:before{
        box-sizing: content-box;
        content: "";
        padding-right: 12px;
        width: 100%;
    }

    &:before,
    .progress{
        background: #6D6D6D;
        border-radius: 2px;
        height: 3px;
        position: absolute;
        top: 7px;
        left: 0;
    }
    .progress{
        background-color: #FF9600;
        width: 0;

        em {
            display: none;
        }
    }

    .ball{
        background: #FFF;
        border: 3px solid #FFBA00;
        border-radius: 50%;
        cursor: pointer;
        height: 12px;
        width: 12px;
        position: absolute;
        top: 2px;
        left: 0;
    }
}