Make product types dynamically orderable.

This commit is contained in:
imperosol
2024-12-17 00:53:47 +01:00
parent c79c251ba7
commit 47876e3971
10 changed files with 269 additions and 113 deletions

View File

@ -0,0 +1,15 @@
.product-type-list {
li {
list-style: none;
margin-bottom: 10px;
i {
cursor: grab;
visibility: hidden;
}
}
}
body:not(.sorting) .product-type-list li:hover i {
visibility: visible;
}