Add delete strike overlay and bump Harbor versions
All checks were successful
Build and Deploy Gateway / build-and-push (push) Successful in 16s
Build and Deploy Gateway / deploy (push) Successful in 7s

This commit is contained in:
2026-07-12 00:23:19 +03:00
parent d6ba05ac7d
commit c56f51e07b
3 changed files with 12 additions and 2 deletions

View File

@@ -986,6 +986,15 @@ p {
filter: drop-shadow(0 0 3px oklch(0.68 0.15 28 / 0.38));
}
.client-delete-strike::before {
content: '';
position: absolute;
inset: 32% 0;
background: oklch(0.68 0.15 28 / 0.32);
clip-path: polygon(0 46%, 20% 8%, 100% 50%, 20% 92%, 0 54%);
filter: blur(3px);
}
.client-deletable-row.is-removing > .client-delete-strike {
animation: client-delete-strike 760ms cubic-bezier(0.16, 1, 0.3, 1) both;
}