Can now select backup codes.

This commit is contained in:
Ylian Saint-Hilaire 2019-09-23 16:50:50 -07:00
parent 4c6278940a
commit c331681ad1
4 changed files with 12 additions and 3 deletions

View File

@ -1565,6 +1565,15 @@ a {
user-select: none;
}
.selecttext {
-webkit-touch-callout: text;
-webkit-user-select: text;
-khtml-user-select: text;
-moz-user-select: text;
-ms-user-select: text;
user-select: text;
}
.fsize {
float: right;
text-align: right;

File diff suppressed because one or more lines are too long

View File

@ -1746,7 +1746,7 @@
case 'otpauth-getpasswords': {
if (xxdialogMode) return;
var x = "One time tokens can be used as secondary authentication. Generate a set, print them and keep them in a safe place.";
x += "<div style='border-radius:6px;border: 2px dashed #888;width:100%;margin-top:8px'><div style='padding:8px;font-family:Arial, Helvetica, sans-serif;font-size:20px;font-weight:bold'><table style=width:100%;text-align:center>";
x += "<div style='border-radius:6px;border: 2px dashed #888;width:100%;margin-top:8px'><div style='padding:8px;font-family:Arial, Helvetica, sans-serif;font-size:20px;font-weight:bold'><table class=selecttext style=width:100%;text-align:center>";
if (message.passwords) {
var j = 0;
for (var i in message.passwords) {

File diff suppressed because one or more lines are too long