mirror of
https://github.com/bitwarden/browser
synced 2025-12-12 06:13:38 +00:00
[PM-2643] Resolve DUO iframe not being clickable (#6219)
This commit is contained in:
@@ -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>
|
||||||
|
|||||||
@@ -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;
|
||||||
|
|
||||||
|
|||||||
@@ -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() {
|
||||||
|
|||||||
Reference in New Issue
Block a user