improvement: new prosthesis type data structure implemented and finally working!

This commit is contained in:
2026-09-01 21:03:04 +03:30
parent dc71c73ced
commit a3c14a18c1
51 changed files with 3306 additions and 1117 deletions

View File

@@ -388,6 +388,28 @@ select option {
stroke: currentColor;
}
@keyframes picker-expand {
from {
opacity: 0;
transform: scaleX(0.88);
}
to {
opacity: 1;
transform: none;
}
}
.picker-expand {
transform-origin: inline-start;
animation: picker-expand 180ms ease-out;
}
@media (prefers-reduced-motion: reduce) {
.picker-expand {
animation: none;
}
}
@keyframes task-row-complete-exit {
0% {
opacity: 1;