Skip to content
This repository was archived by the owner on Jan 19, 2021. It is now read-only.

Commit 650b743

Browse files
committed
Add notice re OTP moving into Browserpass
1 parent 98094b0 commit 650b743

File tree

2 files changed

+18
-0
lines changed

2 files changed

+18
-0
lines changed

src/popup/popup.js

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,13 @@ var display = {
4444
nodes.push(m("div.info", "No token available"));
4545
}
4646

47+
nodes.push(
48+
m(
49+
"div.notice",
50+
"From Browserpass v3.7.0, OTP functionality will move into the main Browserpass extension. It's disabled by default; enable it via the Browserpass options screen."
51+
)
52+
);
53+
4754
return nodes;
4855
}
4956
};

src/popup/popup.less

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,20 @@ body {
2727
}
2828
}
2929

30+
.notice {
31+
font-size: 0.7em;
32+
margin-top: 2px;
33+
min-width: 280px;
34+
}
35+
36+
.info + .notice {
37+
border-top: 0.5px solid #333;
38+
}
39+
3040
.token {
3141
border: none;
3242
text-align: center;
43+
width: 100%;
3344
}
3445

3546
.copy {

0 commit comments

Comments
 (0)