Bump Harbor versions and refine delete strike styling
All checks were successful
Build and Deploy Gateway / build-and-push (push) Successful in 15s
Build and Deploy Gateway / deploy (push) Successful in 7s

This commit is contained in:
2026-07-12 00:06:14 +03:00
parent 87cd83f89a
commit 4519577295
3 changed files with 6 additions and 4 deletions

View File

@@ -1,6 +1,6 @@
export const HARBOR_VERSIONS = Object.freeze({ export const HARBOR_VERSIONS = Object.freeze({
macClient: '0.6.5', macClient: '0.6.6',
gatewayClient: '0.6.4', gatewayClient: '0.6.5',
gatewayBackend: '0.6.0', gatewayBackend: '0.6.0',
}); });

View File

@@ -964,9 +964,10 @@ p {
right: 0; right: 0;
top: 50%; top: 50%;
z-index: 6; z-index: 6;
height: 2px; height: 4px;
background: oklch(0.68 0.15 28); background: oklch(0.68 0.15 28);
box-shadow: 0 0 6px oklch(0.68 0.15 28 / 0.45); clip-path: polygon(0 50%, 18% 40%, 50% 28%, 82% 40%, 100% 50%, 82% 60%, 50% 72%, 18% 60%);
filter: drop-shadow(0 0 2px oklch(0.68 0.15 28 / 0.5));
opacity: 0; opacity: 0;
pointer-events: none; pointer-events: none;
transform: scaleX(0); transform: scaleX(0);

View File

@@ -22,6 +22,7 @@ test('rule editor add latency stays constant and dirty exits are guarded', () =>
assert.match(component, /client-deletable-row/); assert.match(component, /client-deletable-row/);
assert.match(component, /className="client-delete-strike"[\s\S]*onAnimationEnd/); assert.match(component, /className="client-delete-strike"[\s\S]*onAnimationEnd/);
assert.match(styles, /\.client-deletable-row\.is-removing > \.client-delete-strike[\s\S]*client-delete-strike/); assert.match(styles, /\.client-deletable-row\.is-removing > \.client-delete-strike[\s\S]*client-delete-strike/);
assert.match(styles, /\.client-delete-strike[\s\S]*clip-path: polygon\(0 50%[\s\S]*100% 50%/);
assert.match(styles, /@keyframes client-delete-strike[\s\S]*scaleX\(0\)[\s\S]*scaleX\(1\)/); assert.match(styles, /@keyframes client-delete-strike[\s\S]*scaleX\(0\)[\s\S]*scaleX\(1\)/);
assert.match(styles, /\.client-local-rule:has\(\.client-rule-type\.is-open\)[\s\S]*z-index: 5/); assert.match(styles, /\.client-local-rule:has\(\.client-rule-type\.is-open\)[\s\S]*z-index: 5/);
}); });