fix(info): make some text selectable for manual copying

This commit is contained in:
Leonard Kim 2018-03-06 09:59:04 -08:00 committed by Дамян Минков
parent 824a8a8864
commit 0d3b4eedf8
1 changed files with 10 additions and 0 deletions

View File

@ -59,11 +59,17 @@
max-width: 250px; max-width: 250px;
overflow: hidden; overflow: hidden;
text-overflow: ellipsis; text-overflow: ellipsis;
user-select: text;
white-space: nowrap; white-space: nowrap;
} }
.info-dialog-dial-in { .info-dialog-dial-in {
white-space: nowrap; white-space: nowrap;
.conference-id,
.phone-number {
user-select: text;
}
} }
.info-dialog-icon { .info-dialog-icon {
@ -101,6 +107,10 @@
padding-left: 0; padding-left: 0;
} }
.info-password-local {
user-select: text;
}
.conference-id { .conference-id {
margin-left: 5px; margin-left: 5px;
} }