Bump Harbor versions and add delete dimming animation
All checks were successful
Build and Deploy Gateway / build-and-push (push) Successful in 15s
Build and Deploy Gateway / deploy (push) Successful in 6s

This commit is contained in:
2026-07-12 01:45:47 +03:00
parent 8db9d30828
commit 7182bc2c1a
3 changed files with 12 additions and 2 deletions

View File

@@ -1004,6 +1004,10 @@ p {
z-index: 0;
}
.client-deletable-row.is-removing > :not(.client-delete-strike):not(.client-local-rule-enabled) {
animation: client-delete-content-dim 820ms ease-out both;
}
.client-deletable-row.is-removing > .client-local-rule-enabled {
z-index: 101;
color: oklch(0.68 0.15 28);
@@ -1352,6 +1356,11 @@ p {
100% { opacity: 0; transform: scaleX(0); transform-origin: right center; }
}
@keyframes client-delete-content-dim {
0%, 42% { opacity: 1; filter: brightness(1); }
62%, 100% { opacity: 0.28; filter: brightness(0.42) saturate(0.5); }
}
@keyframes client-local-rules-notice {
from { opacity: 0; filter: blur(6px); transform: translateY(-6px); }
to { opacity: 1; filter: blur(0); transform: translateY(0); }