1
0
mirror of https://github.com/bitwarden/browser synced 2024-12-26 18:04:07 +01:00

[PM-2643] Resolve DUO iframe not being clickable (#6219)

This commit is contained in:
Oscar Hinton 2023-09-08 18:38:46 +02:00 committed by GitHub
parent da06f1e5de
commit d149894aad
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 1 additions and 29 deletions

View File

@ -11,7 +11,7 @@
<title>Bitwarden</title>
<base href="" />
</head>
<body class="layout_frontend">
<body>
<app-root>
<div id="loading"><i class="bwi bwi-spinner bwi-spin bwi-3x" aria-hidden="true"></i></div>
</app-root>

View File

@ -1,30 +1,4 @@
html.os_macos {
body.layout_frontend {
-webkit-app-region: drag;
button,
a,
i,
b,
span,
input,
p,
h1,
h2,
h3,
h4,
h5,
h6,
img,
select,
textarea,
label,
.box,
.modal-backdrop {
-webkit-app-region: no-drag;
}
}
.vault .header-search {
-webkit-app-region: drag;

View File

@ -207,7 +207,6 @@ export class VaultComponent implements OnInit, OnDestroy {
if (!this.syncService.syncInProgress) {
await this.load();
}
document.body.classList.remove("layout_frontend");
this.searchBarService.setEnabled(true);
this.searchBarService.setPlaceholderText(this.i18nService.t("searchVault"));
@ -226,7 +225,6 @@ export class VaultComponent implements OnInit, OnDestroy {
ngOnDestroy() {
this.searchBarService.setEnabled(false);
this.broadcasterService.unsubscribe(BroadcasterSubscriptionId);
document.body.classList.add("layout_frontend");
}
async load() {