1
0
mirror of https://github.com/bitwarden/browser.git synced 2025-03-02 03:41:09 +01: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
No known key found for this signature in database
GPG Key ID: 3381A5457F8CCECF
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);
}
/**