.table-editable {
    position: relative;
}

.table-editable .table-drag {
    cursor: pointer;
}

.table-editable .dragged {
    position: absolute;
    top: 0;
    opacity: .5;
    z-index: 2000;
    width: 100%;
}

.table-editable .dragged .row-actions{
    display: none;
}

.table-editable tr.placeholder{
    display: block;
    position: relative;
    background: #af712a;
    margin: 0;
    padding: 0;
    border: 0;
    min-height: inherit;
}

.table-editable tr.placeholder::before{
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border: 5px solid transparent;
    border-left-color: #af712a;
    margin-top: -5px;
    left: -2px;
    border-right: none;
}

.table-editable .row-actions {
    grid-row: 1;
    display: inline-flex;
    align-items: center;
    flex-grow: 1;
    line-height: 1;
}