@guider-border: 1px solid #444950;
@guider-size: 15px;
@guider-margin: -3px;
@guider-padding: 5px;
@border-color: #E0E5EA;

.editor-bleeding-line {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    border-color: rgba(255, 255, 255, 0.5);
    border-style: solid;
    pointer-events: none;
    background: none;
    z-index: 1;
    box-sizing: content-box;
    &::before {
        position: absolute;
        content: '';
        left: 0;
        top: 0;
        border: 1px dashed @border-color;
        width: 100%;
        height: 100%;
        box-sizing: border-box;
    }

    &__guider {
        position: absolute;

        &--horizontal {
            width: @guider-size;
            height: 0;
            border-top: @guider-border;
        }

        &--vertical {
            height: @guider-size;
            width: 0;
            border-left: @guider-border;
        }
    }
}
