Bump Harbor client versions and refine mode swap animation
All checks were successful
Build and Deploy Gateway / build-and-push (push) Successful in 14s
Build and Deploy Gateway / deploy (push) Successful in 6s

This commit is contained in:
2026-07-12 12:44:45 +03:00
parent c40f465708
commit 394fceac15
2 changed files with 10 additions and 5 deletions

View File

@@ -1,6 +1,6 @@
export const HARBOR_VERSIONS = Object.freeze({ export const HARBOR_VERSIONS = Object.freeze({
macClient: '0.7.6', macClient: '0.7.7',
gatewayClient: '0.7.6', gatewayClient: '0.7.7',
gatewayBackend: '0.7.0', gatewayBackend: '0.7.0',
}); });

View File

@@ -555,7 +555,12 @@ p {
} }
} }
.harbor-mode-swap g, .harbor-mode-swap g {
transform-box: view-box;
transform-origin: 9px 9px;
transition: opacity 420ms ease, filter 420ms ease, transform 560ms cubic-bezier(0.16, 1, 0.3, 1);
}
.harbor-mode-swap path { .harbor-mode-swap path {
transform-box: fill-box; transform-box: fill-box;
transform-origin: center; transform-origin: center;
@@ -586,13 +591,13 @@ p {
.harbor-brand.is-gateway-active .harbor-mode-swap .is-connect { .harbor-brand.is-gateway-active .harbor-mode-swap .is-connect {
opacity: 0.28; opacity: 0.28;
filter: blur(0.45px); filter: blur(0.45px);
transform: translateY(6px) rotate(180deg); transform: rotate(180deg);
} }
.harbor-brand.is-gateway-active .harbor-mode-swap .is-gateway { .harbor-brand.is-gateway-active .harbor-mode-swap .is-gateway {
opacity: 1; opacity: 1;
filter: none; filter: none;
transform: translateY(-6px) rotate(180deg); transform: rotate(180deg);
} }
.harbor-mode-tooltip { .harbor-mode-tooltip {