Bump Harbor versions and raise open rule row stacking
All checks were successful
Build and Deploy Gateway / build-and-push (push) Successful in 13s
Build and Deploy Gateway / deploy (push) Successful in 7s

This commit is contained in:
2026-07-11 23:41:02 +03:00
parent f135ade43b
commit 62d2044dc1
3 changed files with 8 additions and 2 deletions

View File

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

View File

@@ -903,6 +903,7 @@ p {
}
.client-local-rule {
position: relative;
min-width: 0;
display: grid;
grid-template-columns: 24px 116px minmax(0, 1fr) 112px 28px;
@@ -913,6 +914,10 @@ p {
transition: opacity 260ms ease, filter 360ms ease;
}
.client-local-rule:has(.client-rule-type.is-open) {
z-index: 5;
}
.client-local-rule-status {
color: var(--client-muted);
font-size: 9px;

View File

@@ -19,6 +19,7 @@ test('rule editor add latency stays constant and dirty exits are guarded', () =>
assert.match(component, /Не сохранено/);
assert.match(component, /Ждёт перезапуска/);
assert.match(component, /Перезапустить VPN/);
assert.match(styles, /\.client-local-rule:has\(\.client-rule-type\.is-open\)[\s\S]*z-index: 5/);
});
test('critical confirmations share one accessible blocking popup', () => {