feature/projects-all-the-way-down #3323

Merged
konrad merged 123 commits from feature/projects-all-the-way-down into main 2023-05-30 10:09:40 +00:00
2 changed files with 7 additions and 3 deletions
Showing only changes of commit 49fac7db1c - Show all commits

View File

@ -6,7 +6,7 @@
@start="() => drag = true"
@end="saveProjectPosition"
handle=".handle"
tag="ul"
tag="menu"
dpschen marked this conversation as resolved Outdated

Use <menu> (now I remembered the correct element).

Use [`<menu>`](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/menu) (now I remembered the correct element).

Done

Done
item-key="id"
:disabled="!canEditOrder"
:component-data="{

View File

@ -14,6 +14,10 @@
}
.menu-list {
list-style: none;
margin: 0;
padding: 0;
&.other-menu-items li,
li > section {
height: 44px;
@ -42,7 +46,7 @@
}
}
li > ul {
li > menu {
margin: 0 0 0 var(--menu-nested-list-margin);
}
@ -126,7 +130,7 @@
cursor: grab;
}
ul {
menu {
border-left: 0;
}
}