Make message text selectable

Issue #50.
This commit is contained in:
N-Pex 2021-02-08 15:37:38 +01:00
parent 4e2c2e58a8
commit 5ab62f4f46

View file

@ -150,6 +150,7 @@ $admin-fg: white;
font-size: 15 * $chat-text-size; font-size: 15 * $chat-text-size;
color: #1c242a; color: #1c242a;
text-align: center; text-align: center;
user-select: text;
} }
.messageIn { .messageIn {
@ -286,6 +287,7 @@ $admin-fg: white;
.from-admin & { .from-admin & {
color: $admin-fg; color: $admin-fg;
} }
user-select: text;
} }
.original-message { .original-message {
@ -297,6 +299,7 @@ $admin-fg: white;
overflow-x: hidden; overflow-x: hidden;
overflow-y: auto; overflow-y: auto;
margin-bottom: 8px; margin-bottom: 8px;
user-select: text;
.original-message-sender { .original-message-sender {
font-family: 'Inter', sans-serif; font-family: 'Inter', sans-serif;
font-weight: 700; font-weight: 700;
@ -331,6 +334,7 @@ $admin-fg: white;
color: #1c242a; color: #1c242a;
text-align: center; text-align: center;
margin: 20px; margin: 20px;
user-select: text;
} }
.message-operations-strut { .message-operations-strut {