1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-12 14:23:32 +00: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
3 changed files with 1 additions and 29 deletions

View File

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

View File

@@ -1,30 +1,4 @@
html.os_macos { 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 { .vault .header-search {
-webkit-app-region: drag; -webkit-app-region: drag;

View File

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