Bump Harbor versions and refine disabled local rules toggle
All checks were successful
Build and Deploy Gateway / build-and-push (push) Successful in 19s
Build and Deploy Gateway / deploy (push) Successful in 6s

This commit is contained in:
2026-07-12 13:09:56 +03:00
parent 2a71466670
commit 5b3d288405
2 changed files with 14 additions and 2 deletions

View File

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

View File

@@ -3042,6 +3042,18 @@ p {
right: 8px; right: 8px;
} }
.client-local-rules-toggle:disabled span {
opacity: 0;
filter: blur(5px);
transform: translateX(8px);
}
.client-local-rules-toggle:disabled:hover span {
opacity: 1;
filter: blur(0);
transform: translateX(0);
}
.client-instructions-sheet { .client-instructions-sheet {
padding: 40px 18px 60px 58px; padding: 40px 18px 60px 58px;
} }