1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-13 14:53:33 +00:00

[PM-5189] Fixing issue found in Safari with how the inline menu is re-positioned

This commit is contained in:
Cesar Gonzalez
2024-06-17 11:03:49 -05:00
parent 22299ce4fb
commit d9bce2bf45
2 changed files with 2 additions and 2 deletions

View File

@@ -692,7 +692,7 @@ export class OverlayBackground implements OverlayBackgroundInterface {
const message = { command: "fadeInAutofillInlineMenuIframe" };
this.inlineMenuButtonPort?.postMessage(message);
this.inlineMenuListPort?.postMessage(message);
}, 125);
}, 150);
}
private clearInlineMenuFadeInTimeout() {

View File

@@ -314,7 +314,7 @@ export class AutofillInlineMenuIframeService implements AutofillInlineMenuIframe
this.fadeInTimeout = globalThis.setTimeout(() => {
this.updateElementStyles(this.iframe, { display: "block", opacity: "1" });
}, 50);
}, 25);
}
/**