.editable-cell-value-wrap {
    // cursor: pointer;
    position: relative;
    line-height: 24px;
    padding: 0 2px;
    cursor: default;
    &.align-right {
        text-align: end;
    }
    &[contenteditable=true] {
        outline: none;
        caret-color: #1e6fff;
        user-select: 'text';
    }
}
.active-border {
    &-top, &-bottom, &-left, &-right {
        position: absolute;
        // z-index: 100;
        background-color: #4b8cff;
    }
    &-top {
        top: -1px;
        left: 0;
        right: 0;
        height: 2px;
    }
    &-bottom {
        bottom: -1px;
        left: 0;
        right: 0;
        height: 2px;
    }
    &-left {
        bottom: 0;
        left: -1px;
        top: 0;
        width: 2px;
    }
    &-right {
        bottom: 0;
        top: 0;
        right: -1px;
        width: 2px;
    }
    
}
.editable-cell-value-input {
    position: relative;
    &.align-right input {
        text-align: end;
    }
    input {
        padding: 0 2px;
    }
    textarea {
        resize: none;
        &.ant-input {
            padding: 0 2px;
        }
    }
    .ant-select-single:not(.ant-select-customize-input) .ant-select-selector {
        padding: 0 2px;
        border: 0;
        .ant-select-selection-item {
            line-height: 24px;
        }
    }

}
