Add drag and drop support for reordering the attributes manually in the Attribute Manager
This commit is contained in:
parent
fec638cb22
commit
b4ec9745e7
4 changed files with 123 additions and 5 deletions
|
|
@ -7,7 +7,7 @@
|
|||
|
||||
.attribute {
|
||||
display: grid;
|
||||
grid-template-columns: 1fr auto auto;
|
||||
grid-template-columns: min-content 1fr repeat(3, auto);
|
||||
align-items: center;
|
||||
gap: 8px;
|
||||
padding: 8px;
|
||||
|
|
@ -18,6 +18,18 @@
|
|||
display: flex;
|
||||
flex-direction: row;
|
||||
align-items: center;
|
||||
|
||||
&.vertical {
|
||||
flex-direction: column;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
taf-icon {
|
||||
cursor: grab;
|
||||
|
||||
&:active {
|
||||
cursor: grabbing;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue