Allow Unit rebase to top-level

Outline base Unit row during drag
Closes #25
This commit is contained in:
2024-04-05 02:18:05 +02:00
parent 8d7f53be10
commit 175ccf6eae
4 changed files with 64 additions and 6 deletions

View File

@@ -376,6 +376,17 @@ table.items td.actions {
gap: 0.4em;
justify-content: end;
}
table.items tr.dropzone {
position: relative;
}
table.items tr.dropzone::after {
content: '';
inset: 1px 0 0 0;
position: absolute;
outline: dashed 2px #009ade;
outline-offset: -1px;
z-index: var(--z-index-table-row-outline);
}
table.items td.handle {
cursor: move;
}